Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- "3.10"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.71.1
- uses: dtolnay/rust-toolchain@1.90.0
- uses: Swatinem/rust-cache@v2
- name: Setup python ${{ matrix.py }}
uses: actions/setup-python@v5
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.71.1
- uses: dtolnay/rust-toolchain@1.90.0
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-python@v5
with:
Expand All @@ -51,22 +51,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.71.1
- uses: dtolnay/rust-toolchain@1.90.0
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- run: pip install -e .[test]
- uses: CodSpeedHQ/action@v2
- uses: CodSpeedHQ/action@v3
with:
token: ${{ secrets.CODSPEED_TOKEN }}
run: pytest -vvv -n auto
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.71.1
- uses: dtolnay/rust-toolchain@1.90.0
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-python@v5
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
with:
ref: version-${{ needs.bump.outputs.version }}
- name: Setup QEMU
uses: docker/setup-qemu-action@v1
- uses: PyO3/maturin-action@v1.42.1
uses: docker/setup-qemu-action@v3
- uses: PyO3/maturin-action@v1.44.0
with:
manylinux: auto
command: build
Expand All @@ -74,7 +74,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: version-${{ needs.bump.outputs.version }}
- uses: PyO3/maturin-action@v1.42.1
- uses: PyO3/maturin-action@v1.44.0
with:
command: build
args: --release -o dist --find-interpreter
Expand All @@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: version-${{ needs.bump.outputs.version }}
- uses: PyO3/maturin-action@v1.42.1
- uses: PyO3/maturin-action@v1.44.0
with:
command: build
args: --release -o dist --universal2 --find-interpreter
Expand All @@ -113,7 +113,7 @@ jobs:
pattern: wheels-*
merge-multiple: true
- name: Publish to PyPI
uses: PyO3/maturin-action@v1.42.1
uses: PyO3/maturin-action@v1.44.0
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
Expand Down