diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7596153..5c16f97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,9 @@ jobs: python-version: "3.13" - name: Install Hatch - run: pip install hatch + run: | + python -m pip install --upgrade pip + pip install hatch --uploaded-prior-to=P1D - name: Build run: hatch build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1fa286d..b338f3a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Hatch - run: pip install hatch + run: | + python -m pip install --upgrade pip + pip install hatch --uploaded-prior-to=P1D - name: Lint if: matrix.python-version == '3.10' && runner.os == 'Linux'