diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-24 18:08:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-24 18:08:26 -0400 |
commit | 76c1888d0b65035f9fbfc1fd31ae75c019fbb699 (patch) | |
tree | 5236a419ad59632fdfb5f67621b0354709c779e8 | |
parent | 8cef0633f463b9710bc778bfe0c29f35761d0d1a (diff) | |
download | python-coveragepy-git-76c1888d0b65035f9fbfc1fd31ae75c019fbb699.tar.gz |
build: use 3.8 uniformly for ci tasks
-rw-r--r-- | .github/workflows/coverage.yml | 2 | ||||
-rw-r--r-- | .github/workflows/kit.yml | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e7dd828f..1aa3a1fd 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -95,7 +95,7 @@ jobs: - name: "Set up Python" uses: "actions/setup-python@v2" with: - python-version: "3.9" + python-version: "3.8" - name: "Install dependencies" run: | diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index 9a9a1425..0d467b21 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -45,10 +45,10 @@ jobs: - name: "Check out the repo" uses: actions/checkout@v2 - - name: "Install Python 3.7" + - name: "Install Python 3.8" uses: actions/setup-python@v2 with: - python-version: "3.7" + python-version: "3.8" - name: "Install cibuildwheel" run: | @@ -76,10 +76,10 @@ jobs: - name: "Check out the repo" uses: actions/checkout@v2 - - name: "Install Python 3.7" + - name: "Install Python 3.8" uses: actions/setup-python@v2 with: - python-version: "3.7" + python-version: "3.8" - name: "Build sdist" run: | |