diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/coverage.yml | 3 | ||||
-rw-r--r-- | .github/workflows/kit.yml | 3 | ||||
-rw-r--r-- | .github/workflows/quality.yml | 3 | ||||
-rw-r--r-- | .github/workflows/testsuite.yml | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 6b155ced..f8aca5cb 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -16,6 +16,9 @@ defaults: run: shell: bash +env: + PIP_DISABLE_PIP_VERSION_CHECK: 1 + jobs: coverage: name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index 6d69b5b9..164c52af 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -17,6 +17,9 @@ defaults: run: shell: bash +env: + PIP_DISABLE_PIP_VERSION_CHECK: 1 + jobs: wheels: name: "Build wheels on ${{ matrix.os }}" diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index f7af7f17..1f2c2482 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -12,6 +12,9 @@ defaults: run: shell: bash +env: + PIP_DISABLE_PIP_VERSION_CHECK: 1 + jobs: lint: name: "Pylint etc" diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 3f3ea8f9..c8e04514 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -12,6 +12,9 @@ defaults: run: shell: bash +env: + PIP_DISABLE_PIP_VERSION_CHECK: 1 + jobs: tests: name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" |