summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-10-28 10:38:42 -0400
committerGitHub <noreply@github.com>2020-10-28 07:38:42 -0700
commitd9e174d3e16c4dc50789f9897334bcc14d0b05d9 (patch)
tree775bf9221c2910a87af003c281a50292ac25fbe8 /setup.py
parent46d35a835fe9e0c586c6b89db31280dde82280c0 (diff)
downloadcryptography-d9e174d3e16c4dc50789f9897334bcc14d0b05d9.tar.gz
Drop python 3.5 (#5527)
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 82800a96e..23671748f 100644
--- a/setup.py
+++ b/setup.py
@@ -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={