Added Python 3.9 support

This commit is contained in:
Ashley Whetter 2021-01-20 14:59:15 -08:00
parent a8d07b610f
commit 714c0609ba
4 changed files with 10 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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