Skip to content

Commit

Permalink
Add testing for Python 3.9 (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
kujyp authored Dec 15, 2020
1 parent 9640a36 commit 91b4afb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.5", "3.6", "3.7", "3.8"]
python: ["3.5", "3.6", "3.7", "3.8", "3.9"]
os: [ubuntu-latest, windows-latest]
include:
- python: "3.5"
Expand All @@ -21,11 +21,13 @@ jobs:
tox_env: "py37"
- python: "3.8"
tox_env: "py38"
- python: "3.9"
tox_env: "py39"

steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"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",
"Topic :: Software Development :: Testing",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.5.3
envlist = py{35,36,37,38}, linting, norewrite
envlist = py{35,36,37,38,39}, linting, norewrite

[testenv]
passenv = USER USERNAME
Expand Down

0 comments on commit 91b4afb

Please sign in to comment.