mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Update pinned dependencies for testing
requirements-pinned.txt lists all immediate and transitive dependencies combined for all supported Python versions. This commit semi-automatically updates the pinned dependencies using the instructions in requirements.txt: Updated dependencies are: - cryptography (supersedes dependabot's #1237) - certifi (supersedes dependabot's #1233) - enum34 (oddly not detected by dependabot) Signed-off-by: Lukas Puehringer <lukas.puehringer@nyu.edu>
This commit is contained in:
parent
4f40764de4
commit
bc77ed1c7e
2 changed files with 5 additions and 5 deletions
|
|
@ -1,9 +1,9 @@
|
|||
certifi==2020.11.8 # via requests
|
||||
certifi==2020.12.5 # via requests
|
||||
cffi==1.14.4 # via cryptography, pynacl
|
||||
chardet==3.0.4 # via requests
|
||||
cryptography==3.2.1 # via securesystemslib
|
||||
enum34==1.1.6 ; python_version < '3' # via cryptography
|
||||
idna==2.10 # via requests
|
||||
cryptography==3.3.1 # via securesystemslib
|
||||
enum34==1.1.10 ; python_version < '3' # via cryptography
|
||||
idna==2.10 # via requests
|
||||
ipaddress==1.0.23 ; python_version < '3' # via cryptography
|
||||
pycparser==2.20 # via cffi
|
||||
pynacl==1.4.0 # via securesystemslib
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
# 1. Use this script to create a pinned requirements file for each Python
|
||||
# version
|
||||
# ```
|
||||
# for v in 2.7 3.5 3.6 3.7 3.8; do
|
||||
# for v in 2.7 3.6 3.7 3.8 3.9; do
|
||||
# mkvirtualenv tuf-env-${v} -p python${v};
|
||||
# pip install pip-tools;
|
||||
# pip-compile --no-header -o requirements-${v}.txt requirements.txt;
|
||||
|
|
|
|||
Loading…
Reference in a new issue