Skip to content

Commit 184c752

Browse files
author
Bastian Bechtold
committed
run tests on ARM64, for real this time
1 parent bbf5228 commit 184c752

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- "pypy-3.8"
2020
- "pypy-3.9"
2121
- "pypy-3.10"
22-
architecture: ["x86", "x64", "aarch64"]
22+
architecture: ["x86", "x64", "arm64"]
2323
exclude:
2424
- os: macos-latest # No Numpy binary wheel
2525
python-version: "pypy-3.7"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_tag(self):
6060
oses = 'win_amd64'
6161
elif platform == 'linux':
6262
# using the centos:7 runner with glibc2.17:
63-
if architecture0 == 'arm64' or architecture0 == 'aarch64':
63+
if architecture0 == 'arm64':
6464
pep600_architecture = 'aarch64'
6565
else:
6666
pep600_architecture = architecture0

0 commit comments

Comments
 (0)