dannyzed / julian

A simple Python library for converting between Julian dates and datetime objects.
MIT License
9 stars 5 forks source link

Pip install fails #2

Open sbliven opened 6 years ago

sbliven commented 6 years ago

I get the following error when installing julian from pip:

$ pip install julian
Collecting julian
  Using cached https://files.pythonhosted.org/packages/e4/40/3454dc78fea47fb634eb82f28473bab7ca376f4c68cd6e889edf67d10b51/julian-0.14.zip
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/b6/l31x0kx14k9_mc6n42wlvy2c0000gq/T/pip-install-kq9fhjoo/julian/setup.py", line 6, in <module>
        long_description = pypandoc.convert('README.md', 'rst')
      File "/usr/local/anaconda3/envs/science3/lib/python3.6/site-packages/pypandoc/__init__.py", line 66, in convert
        raise RuntimeError("Format missing, but need one (identified source as text as no "
    RuntimeError: Format missing, but need one (identified source as text as no file with that name was found).

    ----------------------------------------

The problem is that pypandoc (v 1.4) throws a RuntimeError rather than the (IOError, ImportError) expected in setup.py.