diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2022-05-24 13:12:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 13:12:24 -0400 |
commit | cebe1de23631a300167445bbb152c31615de9faf (patch) | |
tree | d41dd68ec4195ebb879880e0ec5697e1b6cf5395 /setup.py | |
parent | e958ec4141be98c7d04622f5f2cad5e60e765e53 (diff) | |
download | python-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-x | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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', |