This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
The following commit(s) were added to refs/heads/main by this push:
new 7219af2 Turn on the s2geography feature explicitly in verify release
script to pass pytests (#115)
7219af2 is described below
commit 7219af2dc57d891183329abe480ebcbe5a454337
Author: Peter Nguyen <[email protected]>
AuthorDate: Mon Sep 22 20:26:32 2025 -0700
Turn on the s2geography feature explicitly in verify release script to pass
pytests (#115)
---
.github/workflows/python.yml | 1 +
dev/release/verify-release-candidate.sh | 3 +++
2 files changed, 4 insertions(+)
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 484902d..2f447b5 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -116,6 +116,7 @@ jobs:
- name: Install
run: |
+ # Keep this export in sync with the export in
dev/release/verify-release-candidate.sh
export MATURIN_PEP517_ARGS="--features s2geography"
pip install -e "python/sedonadb/[test]" -vv
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index 003f737..3ac9670 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -261,6 +261,9 @@ test_python() {
show_info "Installing Python package"
rm -rf "${SEDONADB_TMPDIR}/python"
+
+ # Keep this export in sync with the export in .github/workflows/python.yml
+ export MATURIN_PEP517_ARGS="--features s2geography"
pip install "sedonadb/[test]" -v
show_info "Testing Python package"