Skip to content

Commit

Permalink
Update 'freezedeps' to use '--strip-extras'
Browse files Browse the repository at this point in the history
This is becoming the default behavior in an upcoming pip-tools
release, but currently warns.

Running and applying the result appears to make minimal changes to our
requirements data. (i.e. only expected changes)
  • Loading branch information
sirosen committed Aug 11, 2023
1 parent f4e5391 commit b26aedb
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
27 changes: 16 additions & 11 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ certifi==2023.7.22
# via requests
charset-normalizer==3.2.0
# via requests
docutils==0.19
docutils==0.20.1
# via sphinx
furo==2023.5.20
furo==2023.7.26
# via -r docs.in
idna==3.4
# via requests
Expand All @@ -28,7 +28,7 @@ markupsafe==2.1.3
# via jinja2
packaging==23.1
# via sphinx
pygments==2.15.1
pygments==2.16.1
# via
# furo
# sphinx
Expand All @@ -38,39 +38,44 @@ requests==2.31.0
# via
# responses
# sphinx
responses==0.23.2
responses==0.23.3
# via -r docs.in
snowballstemmer==2.2.0
# via sphinx
soupsieve==2.4.1
# via beautifulsoup4
sphinx==6.2.1
sphinx==7.1.2
# via
# -r docs.in
# furo
# sphinx-basic-ng
# sphinx-copybutton
# sphinx-design
# sphinx-issues
# sphinxcontrib-applehelp
# sphinxcontrib-devhelp
# sphinxcontrib-htmlhelp
# sphinxcontrib-qthelp
# sphinxcontrib-serializinghtml
sphinx-basic-ng==1.0.0b2
# via furo
sphinx-copybutton==0.5.2
# via -r docs.in
sphinx-design==0.4.1
sphinx-design==0.5.0
# via -r docs.in
sphinx-issues==3.0.1
# via -r docs.in
sphinxcontrib-applehelp==1.0.4
sphinxcontrib-applehelp==1.0.6
# via sphinx
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-devhelp==1.0.4
# via sphinx
sphinxcontrib-htmlhelp==2.0.1
sphinxcontrib-htmlhelp==2.0.3
# via sphinx
sphinxcontrib-jsmath==1.0.1
# via sphinx
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-qthelp==1.0.5
# via sphinx
sphinxcontrib-serializinghtml==1.1.5
sphinxcontrib-serializinghtml==1.1.7
# via sphinx
types-pyyaml==6.0.12.11
# via responses
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pyyaml==6.0.1
# via responses
requests==2.31.0
# via responses
responses==0.23.2
responses==0.23.3
# via -r test.in
types-pyyaml==6.0.12.11
# via responses
Expand Down
2 changes: 1 addition & 1 deletion requirements/typing-mindeps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pyyaml==6.0.1
# via responses
requests==2.31.0
# via responses
responses==0.23.2
responses==0.23.3
# via -r typing.in
types-cryptography==3.3.23.2
# via types-jwt
Expand Down
4 changes: 2 additions & 2 deletions requirements/typing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ charset-normalizer==3.2.0
# via requests
idna==3.4
# via requests
mypy==1.4.1
mypy==1.5.0
# via -r typing.in
mypy-extensions==1.0.0
# via mypy
pyyaml==6.0.1
# via responses
requests==2.31.0
# via responses
responses==0.23.2
responses==0.23.3
# via -r typing.in
types-cryptography==3.3.23.2
# via types-jwt
Expand Down
1 change: 1 addition & 0 deletions scripts/freezedeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def main():
"-m",
"piptools",
"compile",
"--strip-extras",
"-q",
"--resolver=backtracking",
str(source),
Expand Down

0 comments on commit b26aedb

Please sign in to comment.