Skip to content

Commit

Permalink
Add support for Python 3.8 (#867)
Browse files Browse the repository at this point in the history
Related to #760.
  • Loading branch information
hugovk authored and waylan committed Oct 24, 2019
1 parent dab931f commit a991ed4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ matrix:
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
- python: '3.8'
env: TOXENV=py38
- python: 'pypy3'
env: TOXENV=pypy3
- env: TOXENV=flake8
Expand Down
4 changes: 3 additions & 1 deletion docs/change_log/release-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ title: Release Notes for v3.2

# Python-Markdown 3.2 Release Notes

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

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

* Add support for Python 3.8.

## Bug fixes

The following bug fixes are included in the 3.2 release:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def get_version():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35, py36, py37, pypy3, flake8, checkspelling, pep517check
envlist = py35, py36, py37, py38, pypy3, flake8, checkspelling, pep517check
isolated_build = True
min_verison = 1.9

Expand Down

0 comments on commit a991ed4

Please sign in to comment.