Skip to content

Commit 845ccee

Browse files
Use unreleased RustPython
With latest RustPython, it is possible to use latest Rust also.
1 parent 5937e2e commit 845ccee

File tree

7 files changed

+357
-628
lines changed

7 files changed

+357
-628
lines changed

.github/workflows/e2e.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ jobs:
3131
cache: pnpm
3232

3333
- name: Install Rust stable
34-
uses: dtolnay/rust-toolchain@master
35-
with:
36-
toolchain: "1.75.0"
34+
uses: dtolnay/rust-toolchain@stable
3735

3836
- name: Setup Rust cache
3937
uses: swatinem/rust-cache@v2

.github/workflows/format-and-lint.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616
- uses: actions/checkout@v4
1717

1818
- name: Install rustfmt with stable toolchain
19-
uses: dtolnay/rust-toolchain@master
19+
uses: dtolnay/rust-toolchain@stable
2020
with:
21-
toolchain: "1.75.0"
2221
components: rustfmt
2322

2423
- uses: Swatinem/rust-cache@v2
@@ -41,9 +40,8 @@ jobs:
4140
sudo apt-get install -y webkit2gtk-4.1
4241
4342
- name: Install clippy with stable toolchain
44-
uses: dtolnay/rust-toolchain@master
43+
uses: dtolnay/rust-toolchain@stable
4544
with:
46-
toolchain: "1.75.0"
4745
components: clippy
4846

4947
- uses: Swatinem/rust-cache@v2

.github/workflows/test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525

2626
- name: Install stable toolchain
27-
uses: dtolnay/rust-toolchain@master
28-
with:
29-
toolchain: "1.75.0"
27+
uses: dtolnay/rust-toolchain@stable
3028

3129
- name: Install Linux dependencies
3230
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)