|
|
|
|
|
by yes_or_gnome
3209 days ago
|
|
You're going to have a hard time supporting multiple versions of Python that way. If I started a new package today I would target 3.4, 3.5, 3.6, 3.7-dev, and likely, 2.7. A lot of well maintained packages have different dependencies based on the exact version of Python. If you're crazy enough to support 2.6, then there will be a lot of additional packages in pip freeze. Ideally, packages would have just one set of dependencies and the packages would be version locked, but that's just not the case in the Python community. |
|
Why would you sort 2.6 in 2017?
Supporting 2.7 these days in a new package is already a bit of a wtf - Django for example drops support for it next year.