Skip to content

Commit e1d0e4e

Browse files
mayeutdi
authored andcommitted
Allow manylinux2014 wheel upload (#6684)
manylinux2014 platform tag is official per PEP599 see also pypa/manylinux#338
1 parent fe3eddd commit e1d0e4e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Diff for: tests/unit/forklift/test_legacy.py

+7
Original file line numberDiff line numberDiff line change
@@ -2250,6 +2250,13 @@ def test_upload_fails_without_permission(self, pyramid_config, db_request):
22502250
"manylinux1_x86_64",
22512251
"manylinux2010_i686",
22522252
"manylinux2010_x86_64",
2253+
"manylinux2014_i686",
2254+
"manylinux2014_x86_64",
2255+
"manylinux2014_aarch64",
2256+
"manylinux2014_armv7l",
2257+
"manylinux2014_ppc64",
2258+
"manylinux2014_ppc64le",
2259+
"manylinux2014_s390x",
22532260
"macosx_10_6_intel",
22542261
"macosx_10_13_x86_64",
22552262
# A real tag used by e.g. some numpy wheels

Diff for: warehouse/forklift/legacy.py

+7
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ def namespace_stdlib_list(module_list):
103103
"manylinux1_i686",
104104
"manylinux2010_x86_64",
105105
"manylinux2010_i686",
106+
"manylinux2014_x86_64",
107+
"manylinux2014_i686",
108+
"manylinux2014_aarch64",
109+
"manylinux2014_armv7l",
110+
"manylinux2014_ppc64",
111+
"manylinux2014_ppc64le",
112+
"manylinux2014_s390x",
106113
"linux_armv6l",
107114
"linux_armv7l",
108115
}

0 commit comments

Comments
 (0)