From e2d1a464d113418be26e0b2f36945f032c92a017 Mon Sep 17 00:00:00 2001 From: Dima Boger Date: Tue, 30 Mar 2021 20:09:03 +0300 Subject: [PATCH] Add 3.9 to the build a test matrix (#62) * also updated the Cython version --- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a15645..64c035f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] os: [ubuntu-16.04, macos-latest, windows-latest] exclude: # Python 3.5 is unable to properly diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 74c0ae2..1bc405c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] os: [windows-latest, ubuntu-18.04, macos-latest] exclude: # Python 3.5 is unable to properly diff --git a/setup.py b/setup.py index a1791b2..9752a54 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ ROOT = pathlib.Path(__file__).parent -CYTHON_DEPENDENCY = 'Cython==0.29.14' +CYTHON_DEPENDENCY = 'Cython==0.29.22' class httptools_build_ext(build_ext):