Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Next Next commit
downgrade to manylinux2_28
  • Loading branch information
jprochazk committed Jun 5, 2025
commit bee16a485b6c1199badd074fb44064a326ec8b34
2 changes: 1 addition & 1 deletion .github/workflows/contrib_rerun_py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
--mode pr \
--target x86_64-unknown-linux-gnu \
--dir unused \
--compat manylinux_2_34
--compat manylinux_2_28

- name: Install built wheel
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reusable_build_and_upload_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,31 +114,31 @@ jobs:
runner="buildjet-16vcpu-ubuntu-2204-arm"
target="aarch64-unknown-linux-gnu"
container="'rerunio/ci_docker:0.15.0'" # Required to be manylinux compatible
compat="manylinux_2_31"
compat="manylinux_2_28"
;;
linux-x64)
runner="ubuntu-latest-16-cores"
target="x86_64-unknown-linux-gnu"
compat="manylinux_2_31"
compat="manylinux_2_28"
container="'rerunio/ci_docker:0.15.0'" # Required to be manylinux compatible
;;
windows-x64)
runner="windows-latest-8-cores"
target="x86_64-pc-windows-msvc"
container="null"
compat="manylinux_2_31"
compat="manylinux_2_28"
;;
macos-arm64)
runner="macos-15-large" # See https://github.blog/2023-10-02-introducing-the-new-apple-silicon-powered-m1-macos-larger-runner-for-github-actions/
target="aarch64-apple-darwin"
container="null"
compat="manylinux_2_31"
compat="manylinux_2_28"
;;
macos-x64)
runner="macos-15-large" # See https://github.blog/2023-10-02-introducing-the-new-apple-silicon-powered-m1-macos-larger-runner-for-github-actions/
target="x86_64-apple-darwin"
container="null"
compat="manylinux_2_31"
compat="manylinux_2_28"
;;
*) echo "Invalid platform" && exit 1 ;;
esac
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/build_and_upload_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def main() -> None:
parser.add_argument(
"--compat",
type=str,
help='The platform tag for linux, e.g. "manylinux_2_31"',
help='The platform tag for linux, e.g. "manylinux_2_28"',
)
parser.add_argument("--upload-gcs", action="store_true", default=False, help="Upload the wheel to GCS")
args = parser.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/sync_release_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def fetch_binary_assets(
# if "arm64" in name:
# name = f"rerun_sdk-{tag}-x86_64-apple-darwin.whl"
#
# if "manylinux_2_31_x86_64" in name:
# if "manylinux_2_28_x86_64" in name:
# if "x86_64" in name:
# name = f"rerun_sdk-{tag}-x86_64-unknown-linux-gnu.whl"
#
Expand Down