Merge branch 'master' into release-0.4.0

This commit is contained in:
Reinier van der Leer
2023-06-05 16:08:35 +02:00
committed by GitHub
5 changed files with 130 additions and 2 deletions

View File

@@ -37,6 +37,15 @@ jobs:
with:
python-version: ${{ env.min-python-version }}
- name: Set Date
run: echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Cache Python packages
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ env.DATE }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
@@ -124,6 +133,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Set Date
run: echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Cache Python packages
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ env.DATE }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip