Added Python 3.9 support

pull/266/head
Ashley Whetter 4 years ago
parent a8d07b610f
commit 714c0609ba

@ -9,13 +9,14 @@ python:
- 3.6
- 3.7
- 3.8
- 3.9
jobs:
include:
- python: 3.8
- python: 3.9
env: TOXENV=docs
- python: 3.8
- python: 3.9
env: TOXENV=lint
- python: 3.8
- python: 3.9
env: TOXENV=formatting
notifications:
slack:

@ -25,6 +25,7 @@ Features
Can pass a callback that edits the Jinja Environment object before
template rendering begins.
This allows custom filters, tests, and globals to be added to the environment.
* Added support for Python 3.9.
Bug Fixes
^^^^^^^^^

@ -42,5 +42,6 @@ setup(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)

@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38}-sphinx{30,31,32}
py{36,37,38,39}-sphinx{30,31,32}
formatting
lint
docs
@ -10,6 +10,7 @@ python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
[testenv]
setenv =

Loading…
Cancel
Save