Skip to content

Commit 917a6cf

Browse files
authored
Drop Python3.4 Support (#796)
Python is dropping support for PY3.4 on 2019-03-16. Therefore we are dropping support as well. See #760.
1 parent 90833a1 commit 917a6cf

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ matrix:
66
include:
77
- python: '2.7'
88
env: TOXENV=py27
9-
- python: '3.4'
10-
env: TOXENV=py34
11-
dist: trusty
129
- python: '3.5'
1310
env: TOXENV=py35
1411
- python: '3.6'

docs/change_log/release-3.1.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ title: Release Notes for v3.1
22

33
# Python-Markdown 3.1 Release Notes
44

5-
Python-Markdown version 3.1 supports Python versions 2.7, 3.4, 3.5, 3.6, 3.7,
5+
Python-Markdown version 3.1 supports Python versions 2.7, 3.5, 3.6, 3.7,
66
PyPy and PyPy3.
77

88
## Backwards-incompatible changes
@@ -29,9 +29,9 @@ The following new features have been included in the release:
2929

3030
* A new option for `toc_depth` to set not only the bottom section level,
3131
but also the top section level. A string consisting of two digits
32-
separated by a hyphen in between ("2-5"), defines the top (t) and the
33-
bottom (b) (<ht>..<hb>). A single integer still defines the bottom
34-
section level (<h1>..<hb>) only. (#787).
32+
separated by a hyphen in between (`"2-5"`), defines the top (`t`) and the
33+
bottom (`b`) (`<ht>..<hb>`). A single integer still defines the bottom
34+
section level (`<h1>..<hb>`) only. (#787).
3535

3636
## Bug fixes
3737

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
maintainer_email='[email protected]',
7777
license='BSD License',
7878
packages=['markdown', 'markdown.extensions'],
79-
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
79+
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
8080
install_requires=['setuptools >= 36'],
8181
extras_require={
8282
'testing': [
@@ -117,7 +117,6 @@
117117
'Programming Language :: Python :: 2',
118118
'Programming Language :: Python :: 2.7',
119119
'Programming Language :: Python :: 3',
120-
'Programming Language :: Python :: 3.4',
121120
'Programming Language :: Python :: 3.5',
122121
'Programming Language :: Python :: 3.6',
123122
'Programming Language :: Python :: 3.7',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36, py37, pypy, pypy3, flake8, checkspelling
2+
envlist = py27, py35, py36, py37, pypy, pypy3, flake8, checkspelling
33
requires = setuptools>=36
44
isolated_build = True
55

0 commit comments

Comments
 (0)