diff options
author | Miroslav Šedivý <6774676+eumiro@users.noreply.github.com> | 2020-12-28 05:16:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-27 22:16:52 -0600 |
commit | 2383c32857b805d7ebd1a8b6b762b2cd541ae06d (patch) | |
tree | 8cc30fb58c75ba7d27d68ed3cc9b7e296a1cd3f8 | |
parent | 2896fad83357bde252c0304aa4c0c55661486a5e (diff) | |
download | pyparsing-git-2383c32857b805d7ebd1a8b6b762b2cd541ae06d.tar.gz |
Add Python 3.9 support (#256)
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6262238..eb1d4b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,8 @@ matrix: env: TOXENV=py37 - python: 3.8 env: TOXENV=py38 + - python: 3.9 + env: TOXENV=py39 - python: pypy3 env: TOXENV=pypy3 fast_finish: true @@ -50,6 +50,7 @@ setup( # Distribution meta-data "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", @@ -1,6 +1,6 @@ [tox] envlist = - py{35,36,37,38,py3} + py{35,36,37,38,39,py3} [testenv] deps=coverage |