From 8afc57cde79e463d9fed077653bdffeeeb50e5e9 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Fri, 20 Nov 2020 11:03:20 -0300 Subject: [PATCH] add python 3.9 to testing matrices (#16) --- .github/workflows/tests.yml | 2 +- noxfile.py | 3 ++- setup.py | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2bdd2fe..26e517c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/noxfile.py b/noxfile.py index bd6a932..d37e237 100644 --- a/noxfile.py +++ b/noxfile.py @@ -6,7 +6,8 @@ @nox.session( - reuse_venv=True, python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "pypy", "pypy3"] + reuse_venv=True, + python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy", "pypy3"], ) def tests(session): """Run all tests.""" diff --git a/setup.py b/setup.py index a0d2ed1..ad0c954 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,9 @@ "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Text Processing", ], install_requires=install_requires,