summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTheron Luhn <theron@luhn.com>2020-12-11 09:21:41 -0800
committerTheron Luhn <theron@luhn.com>2020-12-11 09:21:41 -0800
commit43bd1a16de441d971bb6e1f3f6dbae055394e324 (patch)
treea87e5f7e18b224b9a2f8a2751f972d550751e48b /setup.py
parent86cb46d4d977d3a948308326bee628421cab93ea (diff)
parent6cf061e170039ff48e7f892f1176d1ab359e2001 (diff)
downloadpyramid-43bd1a16de441d971bb6e1f3f6dbae055394e324.tar.gz
pyramid-43bd1a16de441d971bb6e1f3f6dbae055394e324.tar.bz2
pyramid-43bd1a16de441d971bb6e1f3f6dbae055394e324.zip
Merge remote-tracking branch 'upstream/master' into wiki2-request-identity
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 0c7fc22e0..411f5d9a0 100644
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,6 @@ tests_require = [
'zope.component >= 4.0', # py3 compat
]
-
docs_extras = [
'Sphinx >= 1.8.1', # Unicode characters in tree diagrams
'docutils',
@@ -73,10 +72,10 @@ setup(
"Intended Audience :: Developers",
"Programming Language :: Python",
"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",
"Framework :: Pyramid",
@@ -98,7 +97,7 @@ setup(
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
- python_requires='>=3.5',
+ python_requires='>=3.6',
install_requires=install_requires,
extras_require={'testing': testing_extras, 'docs': docs_extras},
tests_require=tests_require,