Skip to content

Commit 2633bae

Browse files
authored
Merge pull request #300 from zopefoundation/config-with-c-code-template-7ec8131d
Attempt to fix aarch64 by only testing standard interpreters
2 parents e8ad972 + f9cb3a5 commit 2633bae

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,5 +629,5 @@ jobs:
629629
with:
630630
user: __token__
631631
password: ${{ secrets.TWINE_PASSWORD }}
632-
skip-existing: true
633-
packages-dir: wheelhouse/
632+
skip_existing: true
633+
packages_dir: wheelhouse/

.manylinux-install.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ tox_env_map() {
4242
# Compile wheels
4343
for PYBIN in /opt/python/*/bin; do
4444
if \
45-
[[ "${PYBIN}" == *"cp313"* ]] || \
46-
[[ "${PYBIN}" == *"cp311"* ]] || \
47-
[[ "${PYBIN}" == *"cp312"* ]] || \
48-
[[ "${PYBIN}" == *"cp37"* ]] || \
49-
[[ "${PYBIN}" == *"cp38"* ]] || \
50-
[[ "${PYBIN}" == *"cp39"* ]] || \
51-
[[ "${PYBIN}" == *"cp310"* ]] ; then
52-
if [[ "${PYBIN}" == *"cp313"* ]] ; then
45+
[[ "${PYBIN}" == *"cp313/"* ]] || \
46+
[[ "${PYBIN}" == *"cp311/"* ]] || \
47+
[[ "${PYBIN}" == *"cp312/"* ]] || \
48+
[[ "${PYBIN}" == *"cp37/"* ]] || \
49+
[[ "${PYBIN}" == *"cp38/"* ]] || \
50+
[[ "${PYBIN}" == *"cp39/"* ]] || \
51+
[[ "${PYBIN}" == *"cp310/"* ]] ; then
52+
if [[ "${PYBIN}" == *"cp313/"* ]] ; then
5353
"${PYBIN}/pip" install --pre -e /io/
5454
"${PYBIN}/pip" wheel /io/ --pre -w wheelhouse/
5555
else

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/config/c-code
33
[meta]
44
template = "c-code"
5-
commit-id = "761944d0"
5+
commit-id = "7ec8131d"
66

77
[python]
88
with-appveyor = true

0 commit comments

Comments
 (0)