Merge pull request #2 from radarhere/add-cygwin-to-ci

Only install NumPy through pip on 64-bit.

Thanks for catching that, I'd forgotten the NumPy 1.21 problems were only on 64-bit.
This commit is contained in:
DWesl 2022-04-16 07:51:56 -04:00 committed by GitHub
commit 80b8e125bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -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
@ -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.*'"

View File

@ -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 |
+----------------------------------+----------------------------+---------------------+