Skip to content

Commit a991ed4

Browse files
hugovkwaylan
authored andcommitted
Add support for Python 3.8 (#867)
Related to #760.
1 parent dab931f commit a991ed4

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ matrix:
99
env: TOXENV=py36
1010
- python: '3.7'
1111
env: TOXENV=py37
12+
- python: '3.8'
13+
env: TOXENV=py38
1214
- python: 'pypy3'
1315
env: TOXENV=pypy3
1416
- env: TOXENV=flake8

docs/change_log/release-3.2.md

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

33
# Python-Markdown 3.2 Release Notes
44

5-
Python-Markdown version 3.2 supports Python versions 3.5, 3.6, 3.7,
5+
Python-Markdown version 3.2 supports Python versions 3.5, 3.6, 3.7, 3.8,
66
PyPy and PyPy3.
77

88
## Backwards-incompatible changes
@@ -56,6 +56,8 @@ The following new features have been included in the release:
5656
* Markdown parsing in HTML has been exposed via a separate extension called
5757
[`md_in_html`](../extensions/md_in_html.md).
5858

59+
* Add support for Python 3.8.
60+
5961
## Bug fixes
6062

6163
The following bug fixes are included in the 3.2 release:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ def get_version():
130130
'Programming Language :: Python :: 3.5',
131131
'Programming Language :: Python :: 3.6',
132132
'Programming Language :: Python :: 3.7',
133+
'Programming Language :: Python :: 3.8',
133134
'Programming Language :: Python :: 3 :: Only',
134135
'Programming Language :: Python :: Implementation :: CPython',
135136
'Programming Language :: Python :: Implementation :: PyPy',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35, py36, py37, pypy3, flake8, checkspelling, pep517check
2+
envlist = py35, py36, py37, py38, pypy3, flake8, checkspelling, pep517check
33
isolated_build = True
44
min_verison = 1.9
55

0 commit comments

Comments
 (0)