Skip to content

Commit

Permalink
chore(dev/release): default to python 3.11 for now (apache#1252)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm authored and vleslief-ms committed Nov 9, 2023
1 parent 4e9ad43 commit e9f5abf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down

0 comments on commit e9f5abf

Please sign in to comment.