Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
cancel-in-progress: true

env:
PROJ_VERSION: "9.5.1"
PROJ_VERSION: "9.7.0"
DEBIAN_FRONTEND: noninteractive

jobs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
proj-version: ['9.6.0']
proj-version: ['9.7.0']
include:
- python-version: '3.11'
proj-version: '9.6.0'
- python-version: '3.11'
proj-version: '9.5.1'
- python-version: '3.11'
Expand Down
10 changes: 5 additions & 5 deletions ci/proj-compile-wheels.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# INSTALL PROJ & DEPENDENCIES FOR WHEELS
# Test for macOS with [ -n "$IS_MACOS" ]
SQLITE_VERSION=3460100
LIBTIFF_VERSION=4.6.0
CURL_VERSION=8.6.0
NGHTTP2_VERSION=1.60.0
SQLITE_VERSION=3500400
LIBTIFF_VERSION=4.7.0
CURL_VERSION=8.16.0
NGHTTP2_VERSION=1.67.1


# ------------------------------------------
Expand Down Expand Up @@ -289,7 +289,7 @@ function build_sqlite {
CFLAGS="$CFLAGS -DHAVE_PREAD64 -DHAVE_PWRITE64"
fi
if [ -e sqlite-stamp ]; then return; fi
build_simple sqlite-autoconf $SQLITE_VERSION https://www.sqlite.org/2024
build_simple sqlite-autoconf $SQLITE_VERSION https://www.sqlite.org/2025
touch sqlite-stamp
}

Expand Down
6 changes: 3 additions & 3 deletions ci/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "pyproj",
"version": "3.7.1",
"version": "3.8.0",
"dependencies": [
{
"name": "proj",
"version>=": "9.5.1"
"version>=": "9.7.0"
}
],
"builtin-baseline": "4ec74919dbf24931b29347b000c74374e8bbde35"
"builtin-baseline": "5cec4ba35226bc17ba40b403a7defb0181a21dd4"
}
1 change: 1 addition & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Change Log

Latest
------
- WHL: Wheels contain PROJ 9.7.0 (pull #1529)
- ENH: Add :meth:`database.query_geodetic_crs_from_datum` (pull #1390)

3.7.2
Expand Down
Loading