summaryrefslogtreecommitdiff
path: root/markdown/__meta__.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 /markdown/__meta__.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 'markdown/__meta__.py')
-rw-r--r--markdown/__meta__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/__meta__.py b/markdown/__meta__.py
index 84884b6..92dd5cf 100644
--- a/markdown/__meta__.py
+++ b/markdown/__meta__.py
@@ -26,7 +26,7 @@ License: BSD (see LICENSE.md for details).
# (1, 2, 0, 'beta', 2) => "1.2b2"
# (1, 2, 0, 'rc', 4) => "1.2rc4"
# (1, 2, 0, 'final', 0) => "1.2"
-__version_info__ = (3, 3, 7, 'final', 0)
+__version_info__ = (3, 4, 0, 'dev', 0)
def _get_version(version_info):