Replies: 1 comment
-
Reading The former is used to install packages, where you usually pin all dependencies, even to a minor version number. The latter is used to install libraries, where you only list the direct dependencies, and where you do not pin them, but only exclude known incompatible versions. Sometimes, still both are used, but then again, in setup.py are only the direct dependencies with no exact pin, and you use eg pip-tools to generate the requirements.txt. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want tox to show progress while its installing packages from the requirements in a setup.py file which it does not show. Any help is appreciated.
Example
tox.ini
setup.py
requirements.txt
In this case tox won't show the pip output while its installing
requests
anduvicorn
so its difficult to keep track of progress when there is a lot of dependencies in the setupBeta Was this translation helpful? Give feedback.
All reactions