summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-08-09 08:27:40 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-08-09 08:27:40 -0400
commit0e6f78a883f938e2e97de8fc61708c423fbca638 (patch)
tree64ee7b6cd625af465cd67a87d69866e28ab4f5ac /.github
parente6f37f6ff184b4e9d2dad75386ddeb03bf492fd4 (diff)
downloadpython-coveragepy-git-0e6f78a883f938e2e97de8fc61708c423fbca638.tar.gz
build: never warn about old pip versions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/coverage.yml3
-rw-r--r--.github/workflows/kit.yml3
-rw-r--r--.github/workflows/quality.yml3
-rw-r--r--.github/workflows/testsuite.yml3
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 }}"