Skip to content

Commit

Permalink
distribution tag fixes
Browse files Browse the repository at this point in the history
windows tags are now called x86, x64, and arm64 (from 32bit, 64bit), and manylinux version was updated to glibc 2.28.
  • Loading branch information
Bastian Bechtold committed Jan 2, 2025
1 parent 8f5b734 commit 9073e83
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ def get_tag(self):
else:
oses = 'macosx_11_0_arm64'
elif platform == 'win32':
if architecture0 == '32bit':
if architecture0 == 'arm64':
oses = 'win_arm64'
elif architecture0 == 'x86':
oses = 'win32'
else:
elif architecture0 == 'x64':
oses = 'win_amd64'
elif platform == 'linux':
# using the centos:7 runner with glibc2.17:
Expand All @@ -63,7 +65,7 @@ def get_tag(self):
else:
pep600_architecture = architecture0

oses = 'manylinux_2_17_{}'.format(pep600_architecture)
oses = 'manylinux_2_28_{}'.format(pep600_architecture)
else:
pythons = 'py2.py3'
oses = 'any'
Expand Down

0 comments on commit 9073e83

Please sign in to comment.