File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,12 @@ jobs:
2626 with :
2727 python-version : ${{ matrix.python-version }}
2828
29- - uses : actions/cache@v3
30- id : cache-virtualenv
31- with :
32- path : ${{ env.pythonLocation }}
33- key : ${{ env.pythonLocation }}-2-${{ hashFiles('pyproject.toml') }}-${{ matrix.os }}-${{ matrix.python-version }}
29+ # Caching disabled to get latest updates
30+ # - uses: actions/cache@v3
31+ # id: cache-virtualenv
32+ # with:
33+ # path: ${{ env.pythonLocation }}
34+ # key: ${{ env.pythonLocation }}-2-${{ hashFiles('pyproject.toml') }}-${{ matrix.os }}-${{ matrix.python-version }}
3435
3536 - name : Install Fortran compiler on macOS
3637 run : |
3940 echo "CC=gcc-${{ matrix.gcc-version }}" >> "$GITHUB_ENV"
4041
4142 - name : Install dependencies
42- if : steps.cache-virtualenv.outputs.cache-hit != 'true'
43+ # Removed cache conditional to always install fresh
44+ # if: steps.cache-virtualenv.outputs.cache-hit != 'true'
4345 run : |
4446 python -m pip install --upgrade pip
4547 python -m pip install -e .[develop]
You can’t perform that action at this time.
0 commit comments