forked from theupdateframework/python-tuf
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove references to, and handling of, Python 2.7 in our project scaffolding: - updated python_requires in setup.py to state our intent to support Python 3.6 and above (but not Python 4, yet) - Drop no longer required dependencies in setup.py, and requirements-*.txt (further refinement of requirements files will be handled in theupdateframework#1161) - Remove Python 2.7 from our tox environments Signed-off-by: Joshua Lock <[email protected]>
- Loading branch information
Showing
4 changed files
with
4 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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,15 +1,11 @@ | ||
certifi==2020.12.5 # via requests | ||
cffi==1.14.5 # via cryptography, pynacl | ||
chardet==4.0.0 # via requests | ||
cryptography==3.4.6 ; python_version >= '3' # via securesystemslib | ||
cryptography==3.3.2 ; python_version < '3' # via securesystemslib | ||
enum34==1.1.10 ; python_version < '3' # via cryptography | ||
cryptography==3.4.6 # via securesystemslib | ||
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 | ||
requests==2.25.1 | ||
securesystemslib[crypto,pynacl]==0.20.0 | ||
six==1.15.0 | ||
subprocess32==3.5.4 ; python_version < '3' # via securesystemslib | ||
urllib3==1.26.3 # via requests |
This file contains 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
This file contains 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
This file contains 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