Skip to content

Commit f0f18cf

Browse files
Kriechipgjones
authored andcommitted
support py39
1 parent ff5aed4 commit f0f18cf

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- 3.6
1717
- 3.7
1818
- 3.8
19+
- 3.9
1920
- pypy3
2021

2122
steps:
@@ -44,14 +45,13 @@ jobs:
4445
side: [client, server]
4546

4647
steps:
47-
- uses: actions/checkout@master
48-
- name: Set up Python 3.8
49-
uses: actions/setup-python@v1
48+
- uses: actions/checkout@v2
49+
- uses: actions/setup-python@v2
5050
with:
5151
python-version: 3.8
5252
- name: Install tox
5353
run: |
54-
python -m pip install --upgrade pip
54+
python -m pip install --upgrade pip setuptools
5555
pip install --upgrade tox
5656
- name: Initialize tox envs
5757
run: |

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release History
55
---------
66

77
- Prevent invalid window bit sizes.
8-
- Added support for Python 3.8.
8+
- Added support for Python 3.8 and 3.9.
99

1010

1111
0.15.0 (2019-08-10)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
'Programming Language :: Python :: 3.6',
5252
'Programming Language :: Python :: 3.7',
5353
'Programming Language :: Python :: 3.8',
54+
'Programming Language :: Python :: 3.9',
5455
'Programming Language :: Python :: Implementation :: CPython',
5556
'Programming Language :: Python :: Implementation :: PyPy',
5657
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[tox]
2-
envlist = py36, py37, py38, pypy3, format, mypy, lint, docs, packaging
2+
envlist = py36, py37, py38, py39, pypy3, format, mypy, lint, docs, packaging
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
88
3.8: py38, format, mypy, lint, docs, packaging
9+
3.9: py39
910
pypy3: pypy3
1011

1112
[testenv]

0 commit comments

Comments
 (0)