Skip to content

Commit e2d1a46

Browse files
authored
Add 3.9 to the build a test matrix (#62)
* also updated the Cython version
1 parent 63b5de2 commit e2d1a46

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ${{ matrix.os }}
7171
strategy:
7272
matrix:
73-
python-version: [3.5, 3.6, 3.7, 3.8]
73+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
7474
os: [ubuntu-16.04, macos-latest, windows-latest]
7575
exclude:
7676
# Python 3.5 is unable to properly

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
max-parallel: 4
1717
matrix:
18-
python-version: [3.5, 3.6, 3.7, 3.8]
18+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1919
os: [windows-latest, ubuntu-18.04, macos-latest]
2020
exclude:
2121
# Python 3.5 is unable to properly

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
ROOT = pathlib.Path(__file__).parent
1717

18-
CYTHON_DEPENDENCY = 'Cython==0.29.14'
18+
CYTHON_DEPENDENCY = 'Cython==0.29.22'
1919

2020

2121
class httptools_build_ext(build_ext):

0 commit comments

Comments
 (0)