From 5c72df987b137abf338869ddee6f37fc46af7aec Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Wed, 1 Nov 2023 21:14:35 +0100 Subject: [PATCH] ci: Temporarily disable aarch linux wheel in Python release workflow (#12181) --- .github/workflows/release-python.yml | 5 +++++ py-polars/Cargo.lock | 1 - py-polars/Cargo.toml | 2 -- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index e6bcbd21b0d6..99eeb2cd3eb7 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -96,6 +96,11 @@ jobs: exclude: - os: windows-32gb-ram architecture: aarch64 + # Temporarily disable linux aarch64 cross compilation + # TODO: Renable this when issue is fixed + # https://github.com/pola-rs/polars/issues/12180 + - os: ubuntu-latest + architecture: aarch64 steps: - uses: actions/checkout@v4 diff --git a/py-polars/Cargo.lock b/py-polars/Cargo.lock index eb61d874d347..c2f074f486a1 100644 --- a/py-polars/Cargo.lock +++ b/py-polars/Cargo.lock @@ -1962,7 +1962,6 @@ dependencies = [ "polars-plan", "pyo3", "pyo3-built", - "ring 0.17.4", "serde_json", "smartstring", "thiserror", diff --git a/py-polars/Cargo.toml b/py-polars/Cargo.toml index 306a334eeb86..6145df29df1c 100644 --- a/py-polars/Cargo.toml +++ b/py-polars/Cargo.toml @@ -26,8 +26,6 @@ numpy = { version = "0.20", default-features = false } once_cell = "1" pyo3 = { version = "0.20", features = ["abi3-py38", "extension-module", "multiple-pymethods"] } pyo3-built = { version = "0.4", optional = true } -# Remove once release compiles without -ring = { version = '=0.17.4' } serde_json = { version = "1", optional = true } smartstring = "1" thiserror = "1"