Skip to content

Commit 28bb5ef

Browse files
committed
Add Python 3.9 to tests
1 parent 6655f0f commit 28bb5ef

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
max-parallel: 4
2424
matrix:
2525
platform: [ubuntu-latest, macos-latest, windows-latest]
26-
python-version: ["3.6", "3.7", "3.8"]
26+
python-version: ["3.6", "3.7", "3.8", "3.9"]
2727

2828
steps:
2929
- name: Install system dependencies

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[tox]
2-
envlist = py{36,37,38}-{mac,linux,windows},pypy
2+
envlist = py{36,37,38,39}-{mac,linux,windows},pypy
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
88
3.8: py38
9+
3.9: py39
910

1011

1112
[testenv]
@@ -16,11 +17,11 @@ platform =
1617
extras =
1718
test
1819
{mac,linux}: xmlsec
19-
py{36,37,38}: async
20+
py{36,37,38,39}: async
2021
deps =
21-
py{36,37,38}: aioresponses==0.5.0
22-
py{36,37,38}: aiohttp==3.4.4
23-
py{36,37,38}: pytest-asyncio==0.11.0
22+
py{36,37,38,39}: aioresponses==0.5.0
23+
py{36,37,38,39}: aiohttp==3.4.4
24+
py{36,37,38,39}: pytest-asyncio==0.11.0
2425
commands = coverage run --parallel -m pytest {posargs}
2526

2627

0 commit comments

Comments
 (0)