From dde1c06318fb87b8a860ec031c76daab605eee2e Mon Sep 17 00:00:00 2001 From: tcbegley Date: Fri, 27 Nov 2020 21:30:40 +0000 Subject: [PATCH] Test on Python 3.9 and add trove classifier --- .github/workflows/tests.yml | 4 ++-- noxfile.py | 2 +- pyproject.toml | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0047b0a4..9b313f54 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -53,9 +53,9 @@ jobs: needs: build runs-on: 'ubuntu-latest' strategy: - max-parallel: 4 + max-parallel: 6 matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] services: hub: image: selenium/hub:3.141.59-gold diff --git a/noxfile.py b/noxfile.py index 15c5afe9..2d54e076 100644 --- a/noxfile.py +++ b/noxfile.py @@ -17,7 +17,7 @@ def lint(session): session.run("isort", "--check", *SOURCES) -@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"]) +@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"]) def test(session): session.install("pytest") session.install("dash[testing]") diff --git a/pyproject.toml b/pyproject.toml index 27ab64db..6ab5aef9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,8 @@ classifiers = [ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8" + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9" ] requires = ["dash>=1.9.0"] description-file = "landing-page.md"