The project uses strict version dependencies, which is likely to create conflict when installed together with other Python packages.
The way dependencies are set up currently, is not ideal. From the official documentation:
Whereas install_requires requirements are minimal, requirements files often contain an exhaustive listing of pinned versions for the purpose of achieving repeatable installations of a complete environment.
It would be great if you could update the project to only use minimal requirements (>=) in the setup file and pinned version in the requirements file. This would avoid installation issues in more complex environments.
The project uses strict version dependencies, which is likely to create conflict when installed together with other Python packages.
The way dependencies are set up currently, is not ideal. From the official documentation:
It would be great if you could update the project to only use minimal requirements (
>=) in the setup file and pinned version in the requirements file. This would avoid installation issues in more complex environments.