Skip to content

Commit 2d3c5f5

Browse files
authored
WHL: Update wheels to proj 9.7.1 (#1573)
1 parent e6d757c commit 2d3c5f5

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
env:
18-
PROJ_VERSION: "9.7.0"
18+
PROJ_VERSION: "9.7.1"
1919
DEBIAN_FRONTEND: noninteractive
2020

2121
jobs:
@@ -172,7 +172,8 @@ jobs:
172172
CIBW_BEFORE_ALL_LINUX: bash ./ci/proj-compile-wheels.sh
173173
CIBW_BEFORE_ALL_MACOS: bash ./ci/proj-compile-wheels.sh
174174
CIBW_TEST_REQUIRES: cython pytest numpy --config-settings=setup-args="-Dallow-noblas=true"
175-
CIBW_BEFORE_TEST: python -m pip install shapely pandas xarray || echo "Optional requirements install failed"
175+
# Install numpy first so Shapely can find numpy headers during build
176+
CIBW_BEFORE_TEST: python -m pip install numpy && python -m pip install shapely pandas xarray || echo "Optional requirements install failed"
176177
CIBW_TEST_COMMAND: >
177178
pyproj -v &&
178179
python -c "import pyproj; pyproj.Proj(init='epsg:4269')" &&

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
fail-fast: false
4242
matrix:
4343
python-version: ['3.11', '3.12', '3.13']
44-
proj-version: ['9.7.0']
44+
proj-version: ['9.7.1']
4545
include:
4646
- python-version: '3.11'
4747
proj-version: '9.6.0'

ci/vcpkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"dependencies": [
55
{
66
"name": "proj",
7-
"version>=": "9.7.0"
7+
"version>=": "9.7.1"
88
}
99
],
10-
"builtin-baseline": "5cec4ba35226bc17ba40b403a7defb0181a21dd4"
10+
"builtin-baseline": "a763d6da0368f761f62a6badc2162a2f2de652c3"
1111
}

docs/history.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Change Log
33

44
Latest
55
------
6-
- WHL: Wheels contain PROJ 9.7.0 (pull #1529)
6+
- WHL: Wheels contain PROJ 9.7.1 (pull #1573)
77
- WHL: Upgrade from MacOS 13 to MacOS 15 (X86_64) wheels (issue #1532 & #1543)
88
- ENH: Add :meth:`database.query_geodetic_crs_from_datum` (pull #1390)
99
- ENH: Added crs_extent_use kwarg to :class:`pyproj.transformer.TransformerGroup` aligning with PROJ CLI --crs-extent-use

0 commit comments

Comments
 (0)