-
Notifications
You must be signed in to change notification settings - Fork 11
Out of date dependencies #4
Copy link
Copy link
Open
Description
The install_requires in the setup.py should be more flexible. Currently, all of the dependencies are required to be a specific version:
Line 17 in b2d682d
| install_requires=['atomicwrites==1.1.5', |
Since the pip changes its method for solving dependencies, this configuration will cause severe conflicts for many packages with newer versions. Because those packages require the same dependencies with newer versions. Now pip would not allow installing packages with dependency conflicts.
The author should try to modify the requirements in setup.py (not requirements.txt), update the dependency version. It is recommended to use a range like <=, >= to define the version, not the exact requirement ==.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels