Skip to content

Commit

Permalink
ci: test against python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Guthe committed Aug 25, 2021
1 parent 8445128 commit 014d591
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, pypy3]
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down
16 changes: 14 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[tox]
envlist =
py{36,37,38,py3}
py{36,37,38}-build-no-lang
py{36,37,38,39,py3}
py{36,37,38,39}-build-no-lang
docs
format-check
lint
Expand All @@ -28,6 +28,18 @@ setenv =
commands =
python setup.py build

[testenv:py38-build-no-lang]
setenv =
LANG=
commands =
python setup.py build

[testenv:py39-build-no-lang]
setenv =
LANG=
commands =
python setup.py build

[testenv:lint]
basepython = python3.8
changedir = scripts
Expand Down

0 comments on commit 014d591

Please sign in to comment.