pitrou commented on code in PR #43965:
URL: https://github.com/apache/arrow/pull/43965#discussion_r1763267019
##########
dev/tasks/python-wheels/github.linux.yml:
##########
@@ -57,12 +58,24 @@ jobs:
# TODO(kszucs): auditwheel show
- name: Test wheel
+ if: |
+ '{{ python_abi_tag }}' != 'cp313t'
Review Comment:
Nit
```suggestion
if: '{{ python_abi_tag }}' != 'cp313t'
```
##########
dev/tasks/python-wheels/github.linux.yml:
##########
@@ -57,12 +58,24 @@ jobs:
# TODO(kszucs): auditwheel show
- name: Test wheel
+ if: |
+ '{{ python_abi_tag }}' != 'cp313t'
shell: bash
run: |
source arrow/ci/scripts/util_enable_core_dumps.sh
archery docker run python-wheel-manylinux-test-imports
archery docker run python-wheel-manylinux-test-unittests
+ # Free-threaded wheels need to be tested using a different
docker-compose service
+ - name: Test free-threaded wheel
+ if: |
+ '{{ python_abi_tag }}' == 'cp313t'
Review Comment:
Same here
--
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]