From 64df0735835e86ae8e4b1c183d102f680dc79032 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 12 Apr 2022 11:57:23 -0400 Subject: [PATCH 1/3] fix: support Windows 32-bit cross-compiles Closes #45 --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0a96af3..14d576d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ author = Thomas Robitaille author_email = thomas.robitaille@gmail.com license = BSD url = https://github.com/scipy/oldest-supported-numpy -version = 2022.4.10 +version = 2022.4.12 # The Numpy pinnings below have been adapted from those in the # SciPy package, which is released under a 3-clause BSD license: @@ -52,8 +52,8 @@ install_requires = numpy==1.17.3; python_version=='3.8' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64' and platform_machine!='s390x' and platform_machine!='loongarch64' and platform_python_implementation != 'PyPy' numpy==1.19.3; python_version=='3.9' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='loongarch64' and platform_python_implementation != 'PyPy' # Note that 1.21.3 was the first version with a complete set of 3.10 wheels, - # however macOS was broken and it's safe to build against 1.21.4 on all platforms (see gh-28) - numpy==1.21.4; python_version=='3.10' and platform_machine!='loongarch64' and platform_python_implementation != 'PyPy' + # however macOS was broken and it's safe to build against 1.21.6 on all platforms (see gh-28 and gh-45) + numpy==1.21.6; python_version=='3.10' and platform_machine!='loongarch64' and platform_python_implementation != 'PyPy' numpy==1.19.0; python_version=='3.6' and platform_machine!='loongarch64' and platform_python_implementation=='PyPy' numpy==1.20.0; python_version=='3.7' and platform_machine!='loongarch64' and platform_python_implementation=='PyPy' From bbe342cb116a52042010eb7f7dfb051058c85748 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 12 Apr 2022 14:54:39 -0400 Subject: [PATCH 2/3] Update main.yml --- .github/workflows/main.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7af8d00..fa7a15b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,9 +29,6 @@ jobs: qemu: yes - os: macos-latest qemu: yes - - os: windows-latest - python: '3.10' - arch: x86 steps: - uses: actions/checkout@v2 From 7e27687155db344ead4a6f11916bc98302ebf8f2 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Mon, 18 Apr 2022 14:48:16 +0200 Subject: [PATCH 3/3] Update version number to today --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 14d576d..ce23f3c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ author = Thomas Robitaille author_email = thomas.robitaille@gmail.com license = BSD url = https://github.com/scipy/oldest-supported-numpy -version = 2022.4.12 +version = 2022.4.18 # The Numpy pinnings below have been adapted from those in the # SciPy package, which is released under a 3-clause BSD license: