Skip to content

Commit d88cf43

Browse files
committed
chore: Python 3.9 support
1 parent 98336ea commit d88cf43

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
fail-fast: false
9898
matrix:
9999
os: [ubuntu-latest, macos-latest, windows-latest]
100-
python-version: ['3.5', '3.6', '3.7', '3.8']
100+
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
101101

102102
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
103103
runs-on: ${{ matrix.os }}

.github/workflows/python-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
# List of the language-implementation API pairs to publish wheels for
5050
# The list of supported is obtainable by running `docker run quay.io/pypa/manylinux2014_x86_64 ls /opt/python`
51-
PYTHON_IMPLEMENTATION_ABI: [cp35-cp35m, cp36-cp36m, cp37-cp37m, cp38-cp38]
51+
PYTHON_IMPLEMENTATION_ABI: [cp35-cp35m, cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39]
5252
runs-on: ubuntu-latest
5353
container: quay.io/pypa/manylinux2014_x86_64 # Builds wheels on CentOS 7 (supported until 2024)
5454
env:

python/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Added
6+
7+
- Python 3.9 support.
8+
59
### Changed
610

711
- Links to remote stylesheets are deduplicated now.

python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def call_setup():
4343
"Programming Language :: Python :: 3.6",
4444
"Programming Language :: Python :: 3.7",
4545
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.9",
4647
"Programming Language :: Python :: Implementation :: CPython",
4748
"Programming Language :: Rust",
4849
],

python/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# (workaround the fact that setup.py does not honor pyproject.toml)
44
skipsdist = True
55

6-
envlist = py{35,36,37,38}
6+
envlist = py{35,36,37,38,39}
77

88
[testenv]
99
deps =

0 commit comments

Comments
 (0)