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
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
CIBW_ENVIRONMENT: 'PATH="$PATH:/usr/share/rust/.cargo/bin:$HOME/.cargo/bin"'
CIBW_BEFORE_ALL_LINUX: >
yum install -y libffi-devel openssl-devel &&
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.67.1 -y --profile=minimal &&
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.71.1 -y --profile=minimal &&
rustup show &&
cargo install empty-library || true
CIBW_BUILD_VERBOSITY: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-wheel-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.71.1
profile: minimal

- name: Install Rust *-apple-darwin targets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-wheel-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.71.1
profile: minimal

- uses: actions/setup-python@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
CIBW_SKIP: "cp39-musl*"
CIBW_BEFORE_ALL_LINUX: >
yum install -y libffi-devel openssl-devel &&
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.67.1 --profile=minimal -y &&
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.71.1 --profile=minimal -y &&
rustup show &&
cargo install empty-library || true
CIBW_BUILD_VERBOSITY: 1
Expand All @@ -39,7 +39,7 @@ jobs:
if: runner.os != 'Linux'
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.71.1
profile: minimal

- name: Install Rust *-apple-darwin targets
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.71.1
profile: minimal
target: arm-unknown-linux-gnueabihf
default: true
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.71.1
profile: minimal
target: armv7-unknown-linux-gnueabihf
default: true
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.71.1
profile: minimal
target: aarch64-unknown-linux-gnu
default: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
rust-version: ["stable", "1.67.1"]
rust-version: ["stable", "1.71.1"]
name: "Rust ${{ matrix.rust-version }} Python ${{ matrix.python-version }}"
timeout-minutes: 30
steps:
Expand Down
Loading
Loading