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 313245b7 chore(dev/release): default to python 3.11 for now (#1252)
313245b7 is described below
commit 313245b7ff4a45da56130400a83dc1e87be59975
Author: David Li <[email protected]>
AuthorDate: Thu Nov 2 09:41:41 2023 -0400
chore(dev/release): default to python 3.11 for now (#1252)
Fixes #1247.
---
dev/release/verify-release-candidate.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index fcf9a33b..6c27b10e 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -319,7 +319,9 @@ install_conda() {
maybe_setup_conda() {
# Optionally setup conda environment with the passed dependencies
local env="conda-${CONDA_ENV:-source}"
- local pyver=${PYTHON_VERSION:-3}
+ # XXX(https://github.com/apache/arrow-adbc/issues/1247): no duckdb for
+ # python 3.12 on conda-forge right now
+ local pyver=${PYTHON_VERSION:-3.11}
if [ "${USE_CONDA}" -gt 0 ]; then
show_info "Configuring Conda environment..."