Skip to content

Commit f756fac

Browse files
committed
Allow manylinux2014 wheel upload
manylinux2014 platform tag is official per PEP599 see also pypa/manylinux#338
1 parent 9ec023c commit f756fac

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

tests/unit/forklift/test_legacy.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2250,6 +2250,12 @@ 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_ppc64",
2257+
"manylinux2014_ppc64le",
2258+
"manylinux2014_s390x",
22532259
"macosx_10_6_intel",
22542260
"macosx_10_13_x86_64",
22552261
# A real tag used by e.g. some numpy wheels

warehouse/forklift/legacy.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ 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_ppc64",
110+
"manylinux2014_ppc64le",
111+
"manylinux2014_s390x",
106112
"linux_armv6l",
107113
"linux_armv7l",
108114
}

0 commit comments

Comments
 (0)