You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
requirements.txt is introduced in #9785. It should be the result of pip freeze.
However, as time goes by, these files are edit manually when we bump package. Some dependencies are out-of-date and may have version conflict (see #28017).
I think we use a robot to improve this:
Developers only need to modify setup.py.
The robot creates requirements.txt using pip freeze and commits it to the pull request.
(The robot may also periodically update requirements.txt.)
The text was updated successfully, but these errors were encountered:
pip-compile mode is close to our need, but we must create a requirements.in to tell dependabot to follow this file. Because it does not support setup.py file for now. However, we need 3 different requirements.txt. And I don't know how to tell dependabot to follow the requirements.in file.
PS: We can copy the dependency in setup.py to requirements.in and use this command to generate requirements.txt: pip-compile requirements.in --output-file requirements.txt --upgrade
requirements.txt
is introduced in #9785. It should be the result ofpip freeze
.However, as time goes by, these files are edit manually when we bump package. Some dependencies are out-of-date and may have version conflict (see #28017).
I think we use a robot to improve this:
setup.py
.requirements.txt
usingpip freeze
and commits it to the pull request.requirements.txt
.)The text was updated successfully, but these errors were encountered: