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

Commit 17a1c64

Browse files
authored
Test on Python 3.9-dev (#509)
* Test on Python 3.9-dev * Upgrade mypy to fix 'syntax error in type comment' with Python 3.9
1 parent 779e247 commit 17a1c64

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
os: [macos-latest, ubuntu-latest, windows-latest]
11-
python-version: [3.5, 3.6, 3.7, 3.8]
11+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9-dev]
1212

1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v2
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install tox

requirements/tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pytest==3.0.2
22
pytest-pep8==1.0.6
3-
mypy==0.730
3+
mypy==0.782

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# install tox" and then run "tox" from this directory.
55

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

99
[testenv]
1010
download = true

0 commit comments

Comments
 (0)