summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-07-29 10:12:46 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-07-29 10:17:43 -0400
commit325916c8240b8b3c7c41f24b664ca591e8555ea9 (patch)
tree79e9ad3e2c4e6056cf7ddba4f8d4b5119ba43630 /.github/workflows
parentfea1e7cdd57d330f22ac54512ae2df19083c6ec7 (diff)
downloadpython-setuptools-git-325916c8240b8b3c7c41f24b664ca591e8555ea9.tar.gz
Use '-dev' for every Python version. Ref actions/setup-python#213.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 948da052..de49ba8a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -7,11 +7,9 @@ jobs:
strategy:
matrix:
python:
- # Build on pre-releases until stable, then stable releases.
- # actions/setup-python#213
- - ~3.7.0-0
- - ~3.10.0-0
- - ~3.11.0-0
+ - 3.7
+ - '3.10'
+ - '3.11'
platform:
- ubuntu-latest
- macos-latest
@@ -22,7 +20,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v3
with:
- python-version: ${{ matrix.python }}
+ python-version: ${{ matrix.python }}-dev
- name: Install tox
run: |
python -m pip install tox