summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-11-28 13:00:28 -0500
committerNed Batchelder <ned@nedbatchelder.com>2020-11-28 19:48:31 -0500
commit73b63060c3de39453f2af57db5eb9610c0f39625 (patch)
tree2e85dd0abc144ca1a630ae572b1b60e8d3a0d198 /.github
parent52e361421322414c5a30dc490805195bfb402ea7 (diff)
downloadpython-coveragepy-git-73b63060c3de39453f2af57db5eb9610c0f39625.tar.gz
Keep version pins in .pip files
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/kit.yml2
-rw-r--r--.github/workflows/testsuite.yml1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index 167199cd..94ed23e1 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -32,7 +32,7 @@ jobs:
- name: Install cibuildwheel
run: |
- python -m pip install cibuildwheel==1.7.0
+ python -m pip install -c requirements/pins.pip cibuildwheel
- name: Install Visual C++ for Python 2.7
if: runner.os == 'Windows'
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index 62de408a..c94f4e5f 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -43,6 +43,7 @@ jobs:
python -VV
python -m site
python -m pip install -r requirements/ci.pip
+ python -m pip install -c requirements/pins.pip tox-gh-actions
- name: "Run tox for ${{ matrix.python-version }}"
shell: bash