diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 43da631c8..0c53b9dbd 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -80,18 +80,10 @@ jobs: architecture: ${{ matrix.platform.arch }} - name: "Build wheels (rustls-tls)" uses: PyO3/maturin-action@v1 - if: ${{ !startsWith(matrix.platform.target, 'aarch64') }} with: working-directory: py-rattler target: ${{ matrix.platform.target }} args: --release --out dist --no-default-features --features rustls-tls - - name: "Build wheels (native-tls)" - uses: PyO3/maturin-action@v1 - if: ${{ startsWith(matrix.platform.target, 'aarch64') }} - with: - working-directory: py-rattler - target: ${{ matrix.platform.target }} - args: --release --out dist --no-default-features --features native-tls,vendored-openssl - name: "Test wheel" if: ${{ !startsWith(matrix.platform.target, 'aarch64') }} shell: bash diff --git a/py-rattler/Cargo.lock b/py-rattler/Cargo.lock index 9e7ef3468..e95253ef5 100644 --- a/py-rattler/Cargo.lock +++ b/py-rattler/Cargo.lock @@ -2504,9 +2504,9 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.22.5" +version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51" +checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884" dependencies = [ "cfg-if", "chrono", @@ -2537,9 +2537,9 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.22.5" +version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179" +checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38" dependencies = [ "once_cell", "target-lexicon", @@ -2547,9 +2547,9 @@ dependencies = [ [[package]] name = "pyo3-ffi" -version = "0.22.5" +version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d" +checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636" dependencies = [ "libc", "pyo3-build-config", @@ -2566,9 +2566,9 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.22.5" +version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e" +checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -2578,9 +2578,9 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.22.5" +version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce" +checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe" dependencies = [ "heck 0.5.0", "proc-macro2", diff --git a/py-rattler/Cargo.toml b/py-rattler/Cargo.toml index 93cf70e40..d88d20878 100644 --- a/py-rattler/Cargo.toml +++ b/py-rattler/Cargo.toml @@ -47,7 +47,7 @@ rattler_solve = { path = "../crates/rattler_solve", default-features = false, fe rattler_index = { path = "../crates/rattler_index" } rattler_lock = { path = "../crates/rattler_lock", default-features = false } rattler_package_streaming = { path = "../crates/rattler_package_streaming", default-features = false } -pyo3 = { version = "0.22.5", features = [ +pyo3 = { version = "0.22.6", features = [ "abi3-py38", "extension-module", "multiple-pymethods", @@ -69,7 +69,7 @@ serde_json = "1.0.132" pyo3-file = "0.9.0" [build-dependencies] -pyo3-build-config = "0.22.5" +pyo3-build-config = "0.22.6" [patch.crates-io]