jorisvandenbossche commented on code in PR #44192:
URL: https://github.com/apache/arrow/pull/44192#discussion_r1772835458
##########
ci/docker/conda-python.dockerfile:
##########
@@ -27,8 +27,9 @@ COPY ci/conda_env_python.txt \
# we need to install the conda-forge gdb instead (GH-38323).
RUN mamba install -q -y \
--file arrow/ci/conda_env_python.txt \
+ --channel conda-forge/label/python_rc \
$([ "$python" == $(gdb --batch --eval-command 'python import sys;
print(f"{sys.version_info.major}.{sys.version_info.minor}")') ] && echo "gdb") \
- "python=${python}.*=*_cpython" \
+ "python=${python}.*=*_cp*" \
Review Comment:
The reason for this change is that the build output name changed recently in
https://github.com/conda-forge/python-feedstock/pull/679/files#diff-f3725a55bf339595bf865fec73bda8ac99f283b0810c205442021f29c06eea9aR106
While before the build name always ended with `_cpython`, they now changed
it to end with `_{{ abi_tag }}` (so in practice something like `_cp313`.
The above `_cp*` should work for both cases, while still ensuring we get
cpython and not pypy
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]