mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Update setup.py to drop support for Python 3.5
Python 3.5 has now reached its end-of-life and has been retired. https://www.python.org/dev/peps/pep-0478/ The optional (but highly recommended) 'cryptography' dependency has also just dropped support for 3.5. Continuing support for 3.5 in TUF does not seem worth the effort. Signed-off-by: Lukas Puehringer <lukas.puehringer@nyu.edu>
This commit is contained in:
parent
cdf069a8a9
commit
a78da1558a
1 changed files with 1 additions and 2 deletions
3
setup.py
3
setup.py
|
|
@ -100,7 +100,6 @@
|
|||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
|
|
@ -113,7 +112,7 @@
|
|||
'Source': 'https://github.com/theupdateframework/tuf',
|
||||
'Issues': 'https://github.com/theupdateframework/tuf/issues'
|
||||
},
|
||||
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
|
||||
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
|
||||
install_requires = [
|
||||
'requests>=2.19.1',
|
||||
'six>=1.11.0',
|
||||
|
|
|
|||
Loading…
Reference in a new issue