diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2020-10-28 10:38:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-28 07:38:42 -0700 |
| commit | d9e174d3e16c4dc50789f9897334bcc14d0b05d9 (patch) | |
| tree | 775bf9221c2910a87af003c281a50292ac25fbe8 /setup.py | |
| parent | 46d35a835fe9e0c586c6b89db31280dde82280c0 (diff) | |
| download | cryptography-d9e174d3e16c4dc50789f9897334bcc14d0b05d9.tar.gz | |
Drop python 3.5 (#5527)
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -76,10 +76,10 @@ setup( "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", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Security :: Cryptography", @@ -87,7 +87,7 @@ setup( package_dir={"": "src"}, packages=find_packages(where="src", exclude=["_cffi_src", "_cffi_src.*"]), include_package_data=True, - python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", + python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", install_requires=["six >= 1.4.1"] + setup_requirements, setup_requires=setup_requirements, extras_require={ |
