Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Test on Python 3.9-dev (#509)
Browse files Browse the repository at this point in the history
* Test on Python 3.9-dev

* Upgrade mypy to fix 'syntax error in type comment' with Python 3.9
  • Loading branch information
hugovk authored Aug 30, 2020
1 parent 779e247 commit 17a1c64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9-dev]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion requirements/tests.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytest==3.0.2
pytest-pep8==1.0.6
mypy==0.730
mypy==0.782
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# install tox" and then run "tox" from this directory.

[tox]
envlist = {py35,py36,py37,py38}-{tests,install},docs,install,py36-docs
envlist = {py35,py36,py37,py38,py39}-{tests,install},docs,install,py36-docs

[testenv]
download = true
Expand Down

0 comments on commit 17a1c64

Please sign in to comment.