summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-12-28 15:24:39 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-12-28 15:24:46 -0500
commit79f6a3fa77407405259242cbdd85d4ff78ed7193 (patch)
tree2e4e1cb05b1a4faa9a2fc78848d237dfe0bc6707 /.github/workflows
parentf56c3bf79fb209debfe8e75b54d5facad5e5394f (diff)
downloadpython-setuptools-git-79f6a3fa77407405259242cbdd85d4ff78ed7193.tar.gz
Use line-based matrix values for nicer diffs. Remove Python 3.6 and bump to Python 3.10, matching jaraco/skeleton and pypa/setuptools approaches.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml24
1 files changed, 17 insertions, 7 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index bd0e1992..bd2dc8f2 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -6,8 +6,14 @@ jobs:
test:
strategy:
matrix:
- python: [3.6, 3.8, 3.9]
- platform: [ubuntu-latest, macos-latest, windows-latest]
+ python:
+ - 3.7
+ - 3.9
+ - "3.10"
+ platform:
+ - ubuntu-latest
+ - macos-latest
+ - windows-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
@@ -24,8 +30,10 @@ jobs:
test_cygwin:
strategy:
matrix:
- python: [39]
- platform: [windows-latest]
+ python:
+ - "3.10"
+ platform:
+ - windows-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
@@ -49,8 +57,10 @@ jobs:
# Integration testing with setuptools
strategy:
matrix:
- python: [3.9]
- platform: [ubuntu-latest]
+ python:
+ - "3.10"
+ platform:
+ - ubuntu-latest
runs-on: ${{ matrix.platform }}
env:
SETUPTOOLS_USE_DISTUTILS: local
@@ -89,7 +99,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
- python-version: 3.9
+ python-version: "3.10"
- name: Install tox
run: |
python -m pip install tox