We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf5228 commit 184c752Copy full SHA for 184c752
.github/workflows/python-package.yml
@@ -19,7 +19,7 @@ jobs:
19
- "pypy-3.8"
20
- "pypy-3.9"
21
- "pypy-3.10"
22
- architecture: ["x86", "x64", "aarch64"]
+ architecture: ["x86", "x64", "arm64"]
23
exclude:
24
- os: macos-latest # No Numpy binary wheel
25
python-version: "pypy-3.7"
setup.py
@@ -60,7 +60,7 @@ def get_tag(self):
60
oses = 'win_amd64'
61
elif platform == 'linux':
62
# using the centos:7 runner with glibc2.17:
63
- if architecture0 == 'arm64' or architecture0 == 'aarch64':
+ if architecture0 == 'arm64':
64
pep600_architecture = 'aarch64'
65
else:
66
pep600_architecture = architecture0
0 commit comments