diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2021-11-16 09:55:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 09:55:58 -0500 |
commit | 7919bfd8cf44e4fb50a3ccbd82b725db34b66a08 (patch) | |
tree | ead54d284fc5fe6a30e52157ea12a287782484d6 /setup.py | |
parent | d1ed480d474e84895749bca1f9c15ea9a0f3ad6a (diff) | |
download | python-markdown-7919bfd8cf44e4fb50a3ccbd82b725db34b66a08.tar.gz |
Support Python 3.10
Fixes #1124.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -74,7 +74,7 @@ setup( license='BSD License', packages=['markdown', 'markdown.extensions'], python_requires='>=3.6', - install_requires=["importlib-metadata;python_version<'3.8'"], + install_requires=["importlib-metadata>='4.4';python_version<'3.10'"], extras_require={ 'testing': [ 'coverage', @@ -117,6 +117,7 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', |