File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
1515 cancel-in-progress : true
1616
1717env :
18- PROJ_VERSION : " 9.7.0 "
18+ PROJ_VERSION : " 9.7.1 "
1919 DEBIAN_FRONTEND : noninteractive
2020
2121jobs :
@@ -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')" &&
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Change Log
33
44Latest
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
You can’t perform that action at this time.
0 commit comments