Skip to content

Commit

Permalink
🔧 Support for Windows ARM64 in distributed pre-built wheels (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret authored Jun 13, 2024
1 parent f5f51e8 commit a0695d2
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 20 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [ x64, ] # aarch64
target: [ x64, aarch64 ]
python_version: [ '3.10', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ]
exclude:
- target: aarch64
Expand All @@ -328,6 +328,8 @@ jobs:
run: choco install ninja -y
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
XWIN_VERSION: 16 # fix for "no cab file specified by MSI" ...?
with:
target: ${{ matrix.target }}
args: --release --out dist
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.0.8 (2024-06-13)
====================

**Added**
- Support for Windows ARM64 pre-built wheel in CD pipeline.

**Changed**
- Lighter build requirements by refactoring our Rust / Cargo dependencies.

1.0.7 (2024-05-08)
=====================

Expand Down
24 changes: 11 additions & 13 deletions Cargo.lock

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

9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qh3"
version = "1.0.7"
version = "1.0.8"
edition = "2021"
rust-version = "1.75"
license = "BSD-3"
Expand All @@ -15,18 +15,17 @@ crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.20.3", features = ["abi3-py37"] }
ls-qpack = "0.1.4"
rustls = "0.23.5"
x509-parser = { version = "0.16.0", features = ["verify"] }
rustls = "0.23.8"
x509-parser = { version = "0.16.0" }
rsa = { version = "0.9.6", features = ["sha2", "pem", "getrandom"] }
dsa = { version = "0.6.3"}
ed25519-dalek = { version = "2.1.1", features = ["pkcs8", "alloc"]}
rand = "0.8.5"
aes = "0.8.4"
chacha20poly1305 = {version = "0.10.1", features = ["alloc"]}
pkcs8 = {version = "0.10.2", features = ["encryption", "pem", "alloc"]}
pkcs1 = {version = "0.7.5", features = ["alloc", "pem"]}
rustls-pemfile = {version = "2.1.2"}
aws-lc-rs = {version = "1.7.0", features=["bindgen"]}
aws-lc-rs = {version = "1.7.3", features=["bindgen"]}
x509-ocsp = {version = "0.2.1", features = ["builder"]}
x509-cert = "0.2.5"
der = {version = "0.7.9", features = ["alloc"]}
Expand Down
2 changes: 1 addition & 1 deletion qh3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .quic.packet import QuicProtocolVersion
from .tls import CipherSuite, SessionTicket

__version__ = "1.0.7"
__version__ = "1.0.8"

__all__ = (
"connect",
Expand Down

0 comments on commit a0695d2

Please sign in to comment.