From b8fea3cbd421b9712be8a9ea6407d6fe51cf37ac Mon Sep 17 00:00:00 2001 From: Olivier Lemasle Date: Wed, 21 Feb 2024 21:22:29 +0100 Subject: [PATCH] Fix Rust version = 1.75 --- .github/workflows/e2e.yml | 4 +++- .github/workflows/format-and-lint.yml | 6 ++++-- .github/workflows/test.yml | 4 +++- README.md | 4 ++++ 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4c3471a..db757d6 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -31,7 +31,9 @@ jobs: cache: pnpm - name: Install Rust stable - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@master + with: + toolchain: "1.75.0" - name: Setup Rust cache uses: swatinem/rust-cache@v2 diff --git a/.github/workflows/format-and-lint.yml b/.github/workflows/format-and-lint.yml index 03e676b..0d6ff0d 100644 --- a/.github/workflows/format-and-lint.yml +++ b/.github/workflows/format-and-lint.yml @@ -16,8 +16,9 @@ jobs: - uses: actions/checkout@v4 - name: Install rustfmt with stable toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@master with: + toolchain: "1.75.0" components: rustfmt - uses: Swatinem/rust-cache@v2 @@ -40,8 +41,9 @@ jobs: sudo apt-get install -y webkit2gtk-4.1 - name: Install clippy with stable toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@master with: + toolchain: "1.75.0" components: clippy - uses: Swatinem/rust-cache@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9dccbad..88f2772 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,9 @@ jobs: - uses: actions/checkout@v4 - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@master + with: + toolchain: "1.75.0" - name: Install Linux dependencies if: matrix.os == 'ubuntu-latest' diff --git a/README.md b/README.md index e11d680..d4a8c1e 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ Plugin to use [Python](https://www.python.org/) code from [Tauri](https://tauri. It uses [RustPython](https://rustpython.github.io/), a open-source Python 3 interpreter written in Rust. +> ⚠️ Not compatible with Rust versions `> 1.75.0`. +> +> To use the most recent Rust versions, see branch `rustpython-next`, which uses an unreleased version of RustPython. + --- #### License