From d87ba998ca33b025ef3ca46ea8febefdc031f70f Mon Sep 17 00:00:00 2001 From: Caleb Hattingh Date: Wed, 16 Oct 2024 18:36:12 +0200 Subject: [PATCH] Disable rust-cache in CI (#372) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 425ce3d..5028c93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: UNSAFE_PYO3_SKIP_VERSION_CHECK: ${{ matrix.unsafe-pyo3-skip-version-check }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-2019] + os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.12"] allow-prereleases: [false] unsafe-pyo3-skip-version-check: [0] @@ -99,6 +99,6 @@ jobs: with: toolchain: "stable" - - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # 2.7.3 - - run: python3 -m pip install nox + #- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # 2.7.3 + - run: python -m pip install nox - run: nox -s test-${{ matrix.python-version }}