-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin pip to version 24.2, and update disable-non-manylinux.patch (#19510)
* Update disable-non-manylinux.patch due to pip being updated to 24.1.2. The code logic in this area has changed, resulting in patch conflicts. Signed-off-by: Saikrishna Arcot <[email protected]> * Update the pinned version for pip to explicitly point to 24.1.2 This is needed because the patch file that has been updated can only be applied to 24.1.2. However, the version pinning for 24.0 will mean that PR checkers and the daily build will try to continue using 24.0, and thus fail to apply the patch. Signed-off-by: Saikrishna Arcot <[email protected]> * Revert changes to version files, and pin pip to 24.2 Signed-off-by: Saikrishna Arcot <[email protected]> --------- Signed-off-by: Saikrishna Arcot <[email protected]>
- Loading branch information
1 parent
f728ab2
commit 0efc28d
Showing
4 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
Disable any type of wheel besides manylinux wheels. This is to work around an issue where the architecture-specific | ||
wheel might be built with a newer glibc version than what is supported on the system. | ||
|
||
(This patch gets applied only on armhf.) | ||
|
||
--- a/tags.py 2022-07-12 00:07:22.710207780 +0000 | ||
+++ b/tags.py 2022-07-12 00:07:13.185890659 +0000 | ||
@@ -424,7 +424,6 @@ | ||
_, arch = linux.split("_", 1) | ||
yield from _manylinux.platform_tags(linux, arch) | ||
yield from _musllinux.platform_tags(arch) | ||
- yield linux | ||
@@ -498,8 +498,6 @@ | ||
archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) | ||
yield from _manylinux.platform_tags(archs) | ||
yield from _musllinux.platform_tags(archs) | ||
- for arch in archs: | ||
- yield f"linux_{arch}" | ||
|
||
|
||
def _generic_platforms() -> Iterator[str]: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
Disable any type of wheel besides manylinux wheels. This is to work around an issue where the architecture-specific | ||
wheel might be built with a newer glibc version than what is supported on the system. | ||
|
||
(This patch gets applied only on armhf.) | ||
|
||
--- a/tags.py 2022-07-12 00:07:22.710207780 +0000 | ||
+++ b/tags.py 2022-07-12 00:07:13.185890659 +0000 | ||
@@ -424,7 +424,6 @@ | ||
_, arch = linux.split("_", 1) | ||
yield from _manylinux.platform_tags(linux, arch) | ||
yield from _musllinux.platform_tags(arch) | ||
- yield linux | ||
@@ -498,8 +498,6 @@ | ||
archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) | ||
yield from _manylinux.platform_tags(archs) | ||
yield from _musllinux.platform_tags(archs) | ||
- for arch in archs: | ||
- yield f"linux_{arch}" | ||
|
||
|
||
def _generic_platforms() -> Iterator[str]: |