Fix install on Python >= 3.6#18
Fix install on Python >= 3.6#18c-w merged 3 commits intoryan-roemer:masterfrom CatalystCode:fix-install-py36
Conversation
|
Fantastic work on this and the other PRs you've opened! I'll get everything reviewed, merged, and released next week when I have a moment to get my head back into this lib + Python again 😄 |
|
Thanks and looking forward to your reviews! |
|
@c-w -- I've been digging into this, but I confess that I'm having difficulties getting back into this project with a modern python. Here's my current env: $ python --version
Python 3.7.2
$ cat requirements_dev.txt
Django>=1.8.0
Fabric3==1.14.post1
boto==2.48.0
pylint==2.3.1
python-swiftclient==3.5.0
Sphinx==1.6.1
sphinx-bootstrap-theme>=0.7.1I'm attempting to run: # Check lint, which fails presumably for a lot of modern stuff...
$ fab check
# Localdev server, serving up a local well-known directory on a unix-like system
$ fab run_server... and Is there any chance that I can ask for a huge lift on your part to get Thanks! |
|
@c-w -- would you mind emailing me at |
|
@ryan-roemer as of 2095277 both |
|
@c-w -- Looking great! 🎉 One last thing is when I run ... etc. If you happen to know how that works now, do you have any ideas for that? |
|
@ryan-roemer The static media serving for django-admin should be fixed as of d3e34cc (tested with Django==1.8). |
As discussed in #17, the package currently doesn't install on Python versions 3.6 or newer due to the distribute install dependency. For example, see below for a screenshot showing a failed install on Python 3.6.5:
This pull request removes the distribute dependency when installing on Python >= 3.6 which makes the package install cleanly.
Resolves #17