Skip to content

Commit

Permalink
chore: use rustls for aarch64 msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Dec 5, 2024
1 parent 7a34f70 commit f0e33e3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 20 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions py-rattler/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions py-rattler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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]
Expand Down

0 comments on commit f0e33e3

Please sign in to comment.