Skip to content

Commit

Permalink
run tests on ARM64, for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastian Bechtold committed Jan 2, 2025
1 parent bbf5228 commit 184c752
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- "pypy-3.8"
- "pypy-3.9"
- "pypy-3.10"
architecture: ["x86", "x64", "aarch64"]
architecture: ["x86", "x64", "arm64"]
exclude:
- os: macos-latest # No Numpy binary wheel
python-version: "pypy-3.7"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_tag(self):
oses = 'win_amd64'
elif platform == 'linux':
# using the centos:7 runner with glibc2.17:
if architecture0 == 'arm64' or architecture0 == 'aarch64':
if architecture0 == 'arm64':
pep600_architecture = 'aarch64'
else:
pep600_architecture = architecture0
Expand Down

0 comments on commit 184c752

Please sign in to comment.