From be32304da524bf0017ce0522b1f2972ee65fe3f8 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 4 Mar 2019 11:42:20 -0500 Subject: [PATCH] Drop Python3.4 Support Python is dropping support for PY3.4 on 2019-03-16. Therfore we are dropiiing support as well. See #760. --- .travis.yml | 3 --- docs/change_log/release-3.1.md | 8 ++++---- setup.py | 3 +-- tox.ini | 2 +- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index b0daef753..b4b11c96e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,6 @@ matrix: include: - python: '2.7' env: TOXENV=py27 - - python: '3.4' - env: TOXENV=py34 - dist: trusty - python: '3.5' env: TOXENV=py35 - python: '3.6' diff --git a/docs/change_log/release-3.1.md b/docs/change_log/release-3.1.md index b95eb1669..7959364ce 100644 --- a/docs/change_log/release-3.1.md +++ b/docs/change_log/release-3.1.md @@ -2,7 +2,7 @@ title: Release Notes for v3.1 # Python-Markdown 3.1 Release Notes -Python-Markdown version 3.1 supports Python versions 2.7, 3.4, 3.5, 3.6, 3.7, +Python-Markdown version 3.1 supports Python versions 2.7, 3.5, 3.6, 3.7, PyPy and PyPy3. ## Backwards-incompatible changes @@ -29,9 +29,9 @@ The following new features have been included in the release: * A new option for `toc_depth` to set not only the bottom section level, but also the top section level. A string consisting of two digits - separated by a hyphen in between ("2-5"), defines the top (t) and the - bottom (b) (..). A single integer still defines the bottom - section level (

..) only. (#787). + separated by a hyphen in between (`"2-5"`), defines the top (`t`) and the + bottom (`b`) (`..`). A single integer still defines the bottom + section level (`

..`) only. (#787). ## Bug fixes diff --git a/setup.py b/setup.py index 725b005cc..0bb9c954a 100755 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ maintainer_email='waylan.limberg@icloud.com', license='BSD License', packages=['markdown', 'markdown.extensions'], - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', install_requires=['setuptools >= 36'], extras_require={ 'testing': [ @@ -117,7 +117,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', diff --git a/tox.ini b/tox.ini index 799c2eb95..e7de513e4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35, py36, py37, pypy, pypy3, flake8, checkspelling +envlist = py27, py35, py36, py37, pypy, pypy3, flake8, checkspelling requires = setuptools>=36 isolated_build = True