diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c0843d..29dcbf6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: cache-name: cache-conda with: path: ~/miniconda3/envs/test - key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-unknown-linux-gnu/requirements_dev.txt', '.github/workflows/tests.yml') }} + key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-manylinux_2_28/requirements_dev.txt', '.github/workflows/tests.yml') }} # restore-keys: | # ${{ runner.os }}-conda-${{ env.cache-name }}- # ${{ runner.os }}-conda- @@ -43,7 +43,7 @@ jobs: if: steps.cache-conda.outputs.cache-hit != 'true' run: | # python -m pip install --upgrade pip - uv pip install -r deps/x86_64-unknown-linux-gnu/requirements_dev.txt + uv pip install -r deps/x86_64-manylinux_2_28/requirements_dev.txt uv pip install -e . - name: Run pytest run: | @@ -96,7 +96,7 @@ jobs: with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/miniconda3/envs/test - key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-unknown-linux-gnu/requirements_dev.txt', '.github/workflows/tests.yml') }} + key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-manylinux_2_28/requirements_dev.txt', '.github/workflows/tests.yml') }} # restore-keys: | # ${{ runner.os }}-conda-${{ env.cache-name }}- # ${{ runner.os }}-conda- @@ -107,7 +107,7 @@ jobs: if: steps.cache-conda.outputs.cache-hit != 'true' run: | # python -m pip install --upgrade pip - uv pip install -r deps/x86_64-unknown-linux-gnu/requirements_dev.txt + uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt uv pip install -e . - name: Run doctest run: |