Skip to content

Commit d279bdd

Browse files
committed
enforce linux packages to be installed only on systems with glibc >= 2.31
1 parent 60c2fb6 commit d279bdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_tag(self):
3333
if platform.system() == 'Windows':
3434
platform_tag = 'win_amd64'
3535
elif platform.system() == 'Linux':
36-
platform_tag = 'manylinux1_x86_64'
36+
platform_tag = 'manylinux_2_31_x86_64'
3737
elif platform.system() == 'Darwin':
3838
platform_tag = 'macosx_10_11_x86_64'
3939
return a, b, platform_tag

0 commit comments

Comments
 (0)