Skip to content

Commit

Permalink
Allow manylinux2014 wheel upload
Browse files Browse the repository at this point in the history
manylinux2014 platform tag is official per PEP599

see also pypa/manylinux#338
  • Loading branch information
mayeut committed Sep 23, 2019
1 parent 9ec023c commit f756fac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/unit/forklift/test_legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2250,6 +2250,12 @@ def test_upload_fails_without_permission(self, pyramid_config, db_request):
"manylinux1_x86_64",
"manylinux2010_i686",
"manylinux2010_x86_64",
"manylinux2014_i686",
"manylinux2014_x86_64",
"manylinux2014_aarch64",
"manylinux2014_ppc64",
"manylinux2014_ppc64le",
"manylinux2014_s390x",
"macosx_10_6_intel",
"macosx_10_13_x86_64",
# A real tag used by e.g. some numpy wheels
Expand Down
6 changes: 6 additions & 0 deletions warehouse/forklift/legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ def namespace_stdlib_list(module_list):
"manylinux1_i686",
"manylinux2010_x86_64",
"manylinux2010_i686",
"manylinux2014_x86_64",
"manylinux2014_i686",
"manylinux2014_aarch64",
"manylinux2014_ppc64",
"manylinux2014_ppc64le",
"manylinux2014_s390x",
"linux_armv6l",
"linux_armv7l",
}
Expand Down

0 comments on commit f756fac

Please sign in to comment.