Skip to content

Commit

Permalink
Skip checking the version of pip, to avoid warning
Browse files Browse the repository at this point in the history
  • Loading branch information
moble committed Sep 7, 2024
1 parent 0e4b91b commit fced2c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Install Hatch
if: ${{ env.skipping_build_and_test_replicate != 'true' }}
run: pip install --upgrade hatch
run: python -m pip install --disable-pip-version-check --upgrade hatch

- name: Run tests
if: ${{ env.skipping_build_and_test_replicate != 'true' }}
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install Hatch
run: pip install --upgrade hatch
run: python -m pip install --disable-pip-version-check --upgrade hatch

- name: Bump version
shell: bash
Expand Down

0 comments on commit fced2c4

Please sign in to comment.