From 8e5f683f58a42933972daf48a9cd0d6dfede87f5 Mon Sep 17 00:00:00 2001 From: "Alan D. Snow" Date: Thu, 31 Aug 2023 12:59:33 -0500 Subject: [PATCH] CI: Address numpy installation issues on pypy (#1337) --- .cirrus.yml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 5f2a94c16..41accc4a7 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -26,7 +26,7 @@ macos_task: CMAKE_OSX_ARCHITECTURES='arm64' LDFLAGS="${LDFLAGS} -Wl,-rpath,${CIRRUS_WORKING_DIR}/pyproj/proj_dir/lib" CIBW_BEFORE_ALL_MACOS: bash ./ci/proj-compile-wheels.sh - CIBW_TEST_REQUIRES: cython pytest oldest-supported-numpy + CIBW_TEST_REQUIRES: cython pytest numpy CIBW_BEFORE_TEST: python -m pip install shapely pandas xarray || echo "Optional requirements install failed" CIBW_TEST_COMMAND: > pyproj -v && diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2a50796fc..d7c1abda7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -137,7 +137,7 @@ jobs: CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair --add-path C:/vcpkg/installed/${{ matrix.triplet }}/bin -w {dest_dir} {wheel}" CIBW_BEFORE_ALL_LINUX: bash ./ci/proj-compile-wheels.sh CIBW_BEFORE_ALL_MACOS: bash ./ci/proj-compile-wheels.sh - CIBW_TEST_REQUIRES: cython pytest oldest-supported-numpy + CIBW_TEST_REQUIRES: cython pytest numpy CIBW_BEFORE_TEST: python -m pip install shapely pandas xarray || echo "Optional requirements install failed" CIBW_TEST_COMMAND: > pyproj -v &&