jakul / django-transifex

Django integration with python-transifex
20 stars 8 forks source link

Installation issue with PIP #9

Closed thijstriemstra closed 9 years ago

thijstriemstra commented 9 years ago

When you install this library with pip:

pip install djangotransifex

It'll fail with the following error:

    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

      File "<string>", line 20, in <module>

      File "/private/var/folders/jc/c_vnhmp15sn_pbbssg69y95w0000gn/T/pip-build-oZlR_T/djangotransifex/setup.py", line 21, in <module>

        long_description=open('README.md').read(),

    IOError: [Errno 2] No such file or directory: 'README.md'

Looks like current source doesn't make this call anymore, can a new version be put on pypi?

jakul commented 9 years ago

Hey @thijstriemstra. Thanks for the report! Can you let me know which version was trying to be installed?

jakul commented 9 years ago

Sorry about that, I'll push a new version tonight.

Em ter, 17 de mar de 2015 22:11, Thijs Triemstra notifications@github.com escreveu:

When you install this library with pip:

pip install djangotransifex

It'll fail with the following error:

Complete output from command python setup.py egg_info:
Traceback (most recent call last):

  File "<string>", line 20, in <module>

  File "/private/var/folders/jc/c_vnhmp15sn_pbbssg69y95w0000gn/T/pip-build-oZlR_T/djangotransifex/setup.py", line 21, in <module>

    long_description=open('README.md').read(),

IOError: [Errno 2] No such file or directory: 'README.md'

Looks like current source doesn't make this call anymore, can a new version be put on pypi?

— Reply to this email directly or view it on GitHub https://github.com/jakul/django-transifex/issues/9.

thijstriemstra commented 9 years ago

No problem, yea it was the latest version. Putting in place a Travis build would help catch these mistakes in the future.

I also got put off by the fact that Django==1.4.5 or some old version was being installed in my virtual environment, overwriting my Django 1.7.6 installation, perhaps that's something you can fix as well.. Guess removing the version nr and just requiring Django should be enough?

jakul commented 9 years ago

I've pushed a new version which should fix the install issue.

I've also started working on adding support for 1.7,but I can't give you an ETA on it yet.