Skip to content

Commit

Permalink
Merge pull request #485 from facultyai/python-3.9
Browse files Browse the repository at this point in the history
Python 3.9
  • Loading branch information
tcbegley authored Dec 13, 2020
2 parents 6079396 + dde1c06 commit 58e13a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]")
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 58e13a8

Please sign in to comment.