-
Notifications
You must be signed in to change notification settings - Fork 1k
Freeze package versions in requirements-*.txt #755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Yang-33
merged 6 commits into
master
from
users/habara-keigo/fix/freeze-package-versions
Mar 26, 2025
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
986b7eb
Freeze package versions in requirements-*.txt
habara-k 5bdabb9
Specify compatible Sphinx version for Python 3.9 support
habara-k 7777221
Merge branch 'master' into users/habara-keigo/fix/freeze-package-vers…
habara-k cb4aeb5
Specify versions of requirements.txt
habara-k 754bead
Use lower bounds for future and Deprecated
habara-k b22d7a8
Merge branch 'master' into users/habara-keigo/fix/freeze-package-vers…
habara-k File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
-r requirements.txt | ||
-r requirements-test.txt | ||
tox | ||
wheel | ||
sphinx>=2 | ||
sphinx_rtd_theme | ||
pypandoc | ||
twine | ||
black>=24.10.0 | ||
tox==4.24.1 | ||
wheel==0.45.1 | ||
Sphinx==7.4.7 | ||
sphinx-rtd-theme==3.0.2 | ||
pypandoc==1.15 | ||
twine==6.1.0 | ||
black==25.1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pytest | ||
pytest-pep8 | ||
pytest-cov | ||
pytest-aiohttp | ||
responses | ||
pytest==8.3.4 | ||
pytest-pep8==1.0.6 | ||
pytest-cov==6.0.0 | ||
pytest-aiohttp==1.1.0 | ||
responses==0.25.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
requests>=2.32.3,<3 | ||
urllib3>=2.0.5,<3 | ||
aiohttp >=3.10.9 | ||
future | ||
aiohttp >=3.10.9, <4 | ||
future==1.0.0 | ||
pydantic >=2.0.3, <3 | ||
aenum >= 3.1.11 | ||
python_dateutil >= 2.5.3 | ||
Deprecated | ||
aenum >= 3.1.11, <4 | ||
python_dateutil >= 2.5.3, <3 | ||
Deprecated==1.2.18 | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
about
future
,Deprecated
If this completely fixes the version, it may cause conflicts with other libraries on the user's side, and the user may not be able to apply security patches. Please only set upper and lower bounds if necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.