Skip to content

Commit cd0e0c9

Browse files
mayeutdi
authored andcommitted
Allow manylinux2010 wheel upload (#3951)
manylinux2010 platform tag is official per PEP571 see also pypa/manylinux#179
1 parent 43ec5be commit cd0e0c9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tests/unit/forklift/test_legacy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2149,6 +2149,7 @@ def test_upload_fails_without_permission(self, pyramid_config, db_request):
21492149
"plat",
21502150
["any", "win32", "win_amd64", "win_ia64",
21512151
"manylinux1_i686", "manylinux1_x86_64",
2152+
"manylinux2010_i686", "manylinux2010_x86_64",
21522153
"macosx_10_6_intel", "macosx_10_13_x86_64",
21532154
# A real tag used by e.g. some numpy wheels
21542155
("macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64."

warehouse/forklift/legacy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def namespace_stdlib_list(module_list):
7474
"any",
7575
"win32", "win_amd64", "win_ia64",
7676
"manylinux1_x86_64", "manylinux1_i686",
77+
"manylinux2010_x86_64", "manylinux2010_i686",
7778
"linux_armv6l", "linux_armv7l",
7879
}
7980
# macosx is a little more complicated:

0 commit comments

Comments
 (0)