This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 746d2dc23 ci: unpin python, work around mamba bug (#4293)
746d2dc23 is described below
commit 746d2dc235c59b5d865517400a3a80e2875c41fa
Author: David Li <[email protected]>
AuthorDate: Thu May 7 09:53:23 2026 +0900
ci: unpin python, work around mamba bug (#4293)
- Unpin Python 3.12.
- Lowercase the Cython requirement
(https://github.com/mamba-org/mamba/issues/4251)
---
ci/conda_env_python.txt | 2 +-
dev/release/verify-release-candidate.sh | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/ci/conda_env_python.txt b/ci/conda_env_python.txt
index c251dd8d1..c7357a5e0 100644
--- a/ci/conda_env_python.txt
+++ b/ci/conda_env_python.txt
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-Cython
+cython
importlib-resources
# libxml2 broke ABI compatibility
# https://github.com/conda-forge/arrow-cpp-feedstock/issues/1740
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index ed4286f39..7a21d0bf7 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -569,8 +569,7 @@ test_python() {
# Build and test Python
maybe_setup_virtualenv cython duckdb pandas polars protobuf pyarrow pytest
setuptools_scm setuptools importlib_resources || exit 1
- # XXX: pin Python for now since various other packages haven't caught up
- maybe_setup_conda --file "${ADBC_DIR}/ci/conda_env_python.txt" python=3.12
|| exit 1
+ maybe_setup_conda --file "${ADBC_DIR}/ci/conda_env_python.txt" || exit 1
if [ "${USE_CONDA}" -gt 0 ]; then
CMAKE_PREFIX_PATH="${CONDA_BACKUP_CMAKE_PREFIX_PATH}:${CMAKE_PREFIX_PATH}"