summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2022-05-24 13:12:24 -0400
committerGitHub <noreply@github.com>2022-05-24 13:12:24 -0400
commitcebe1de23631a300167445bbb152c31615de9faf (patch)
treed41dd68ec4195ebb879880e0ec5697e1b6cf5395 /setup.py
parente958ec4141be98c7d04622f5f2cad5e60e765e53 (diff)
downloadpython-markdown-cebe1de23631a300167445bbb152c31615de9faf.tar.gz
Drop support for PY36
Python dropped support on 2021-12-23. Our policy (#760) is to drop support on the next point release after Python does. * Remove py36 tests * Test multiple recent versions of pypy * Remove pep562 backport
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 24b01f6..c6eb6af 100755
--- a/setup.py
+++ b/setup.py
@@ -73,7 +73,7 @@ setup(
maintainer_email='python.markdown@gmail.com',
license='BSD License',
packages=['markdown', 'markdown.extensions'],
- python_requires='>=3.6',
+ python_requires='>=3.7',
install_requires=["importlib-metadata>=4.4;python_version<'3.10'"],
extras_require={
'testing': [
@@ -113,7 +113,6 @@ setup(
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',