Skip to content

Commit dde1c06

Browse files
committed
Test on Python 3.9 and add trove classifier
1 parent 6079396 commit dde1c06

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ jobs:
5353
needs: build
5454
runs-on: 'ubuntu-latest'
5555
strategy:
56-
max-parallel: 4
56+
max-parallel: 6
5757
matrix:
58-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
58+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
5959
services:
6060
hub:
6161
image: selenium/hub:3.141.59-gold

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def lint(session):
1717
session.run("isort", "--check", *SOURCES)
1818

1919

20-
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
20+
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"])
2121
def test(session):
2222
session.install("pytest")
2323
session.install("dash[testing]")

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ classifiers = [
1515
"Programming Language :: Python :: 3.5",
1616
"Programming Language :: Python :: 3.6",
1717
"Programming Language :: Python :: 3.7",
18-
"Programming Language :: Python :: 3.8"
18+
"Programming Language :: Python :: 3.8",
19+
"Programming Language :: Python :: 3.9"
1920
]
2021
requires = ["dash>=1.9.0"]
2122
description-file = "landing-page.md"

0 commit comments

Comments
 (0)