Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 11 additions & 13 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,20 @@ jobs:
with:
platforms: arm64

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Build wheels
uses: PyO3/maturin-action@v1.44.0
uses: PyO3/maturin-action@v1.49.4
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13 python3.14
sccache: 'true'
manylinux: auto
before-script-linux: |
# run this installation and add CFLAGS only for aarch64
if [ "${{ matrix.platform.target }}" = "aarch64" ]; then
apt-get update
apt-get install -y pkg-config libssl-dev
export CFLAGS="-D__ARM_ARCH=8"
fi

Expand All @@ -70,16 +68,16 @@ jobs:
target: x86
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"
architecture: ${{ matrix.platform.target }}

- name: Build wheels
uses: PyO3/maturin-action@v1.44.0
uses: PyO3/maturin-action@v1.49.4
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13 python3.14
sccache: 'true'

- name: Upload wheels
Expand All @@ -99,15 +97,15 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@v1.49.4
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13 python3.14
sccache: 'true'

- name: Upload wheels
Expand All @@ -121,7 +119,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1.44.0
uses: PyO3/maturin-action@v1.49.4
with:
command: sdist
args: --out dist
Expand Down Expand Up @@ -154,7 +152,7 @@ jobs:
subject-path: 'wheels-*/*'

- name: Publish to PyPI
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@v1.49.4
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ target
*.egg-info
__pycache__
# IDE
.vscode
.vscode
Loading
Loading