Skip to content

Commit

Permalink
Add official support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetech committed Aug 9, 2021
1 parent 3f51f2a commit 924b8be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ jobs:
matrix:
name: [
"windows-py36",
"windows-py37",
"windows-py39",
"windows-pypy3",

"ubuntu-py36",
"ubuntu-py36-pytestmain",
"ubuntu-py37",
"ubuntu-py38",
"ubuntu-py39",
"ubuntu-pypy3",
"ubuntu-benchmark",

Expand Down Expand Up @@ -67,6 +68,11 @@ jobs:
os: ubuntu-latest
tox_env: "py38"
use_coverage: true
- name: "ubuntu-py39"
python: "3.9"
os: ubuntu-latest
tox_env: "py39"
use_coverage: true
- name: "ubuntu-pypy3"
python: "pypy3"
os: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions changelog/309.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add official support for Python 3.9.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.6 3.7 3.8".split()]
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.6 3.7 3.8 3.9".split()]

with open("README.rst", "rb") as fd:
long_description = fd.read().decode("utf-8")
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=linting,docs,py{36,37,38,py3},py{36,37}-pytest{master}
envlist=linting,docs,py{36,37,38,39,py3},py{36,37}-pytest{main}

[testenv]
commands=
Expand Down

0 comments on commit 924b8be

Please sign in to comment.