From 3b005adf35ac486d8016d8094c83807bc87bb2ae Mon Sep 17 00:00:00 2001 From: M3t0r Date: Wed, 14 Aug 2024 01:25:44 +0200 Subject: [PATCH] downgrade pypy --- .github/workflows/tests.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 16c272d..ff21e66 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -19,7 +19,7 @@ jobs: python-version: '3.x' experimental: true - os: ubuntu-latest - python-version: 'pypy-3.10' + python-version: 'pypy-3.9' experimental: true steps: @@ -32,11 +32,12 @@ jobs: uses: eifinger/setup-rye@v4 with: enable-cache: true + - name: Register current Python version + run: rye toolchain register --name '${{ matrix.python-version }}' $(which python3) + - name: Pin current Python version + run: rye pin ${{ matrix.python-version }} - name: Install dependencies - run: | - rye toolchain register --name '${{ matrix.python-version }}' $(which python3) - rye pin ${{ matrix.python-version }} - rye sync + run: rye sync - name: Run tests continue-on-error: ${{ matrix.eperimental }} run: rye run pytest