From 635f8cf327aea361120a9f6a344355ed1caea03b Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 16 Apr 2022 15:42:09 +1000 Subject: [PATCH 1/2] Added Python 3.9 --- .github/workflows/test-cygwin.yml | 2 +- docs/installation.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-cygwin.yml b/.github/workflows/test-cygwin.yml index c85876ad1..5597b2b34 100644 --- a/.github/workflows/test-cygwin.yml +++ b/.github/workflows/test-cygwin.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-minor-version: [7, 8] + python-minor-version: [7, 8, 9] architecture: ["x86", "x86_64"] timeout-minutes: 40 diff --git a/docs/installation.rst b/docs/installation.rst index e5f09dad4..f2c08488f 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -478,9 +478,9 @@ These platforms are built and tested for every change. +----------------------------------+----------------------------+---------------------+ | Windows Server 2019 | 3.7, 3.8, 3.9, 3.10, PyPy3 | x86, x86-64 | | +----------------------------+---------------------+ -| | 3.9/MinGW | x86, x86-64 | +| | 3.9 (MinGW) | x86, x86-64 | | +----------------------------+---------------------+ -| | 3.8/Cygwin | x86-64 | +| | 3.7, 3.8, 3.9 (Cygwin) | x86, x86-64 | +----------------------------------+----------------------------+---------------------+ From cdfe08bc5e06f0ac2debbf3dd1db69584623db2d Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 16 Apr 2022 19:14:00 +1000 Subject: [PATCH 2/2] Only install NumPy through pip on 64-bit --- .github/workflows/test-cygwin.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-cygwin.yml b/.github/workflows/test-cygwin.yml index 5597b2b34..8683e72d7 100644 --- a/.github/workflows/test-cygwin.yml +++ b/.github/workflows/test-cygwin.yml @@ -53,6 +53,7 @@ jobs: bash.exe .ci/install.sh - name: Install a different NumPy + if: matrix.architecture == 'x86_64' run: | bash.exe -c "python3.${{ matrix.python-minor-version }} -m pip install -U 'numpy!=1.21.*'"