summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2021-03-10 09:50:40 +0100
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2021-03-10 09:50:40 +0100
commitf78c60cc28c7e44117b92c73286a6cfdef94b49a (patch)
treecf8370569b0bb3a42cb95897ac648523fd0cd7df
parentf656c2f42da4421d5e0e6b9e0ac5f0eba6384a84 (diff)
downloadsetuptools-scm-prepare-breakages.tar.gz
streamline workflows for current state of python versionsprepare-breakages
drop deadsnakes until we need it again
-rw-r--r--.github/workflows/python-tests.yml19
1 files changed, 4 insertions, 15 deletions
diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml
index 68c1f85..ffb8fe6 100644
--- a/.github/workflows/python-tests.yml
+++ b/.github/workflows/python-tests.yml
@@ -17,12 +17,7 @@ jobs:
matrix:
python_version: [ '3.6', '3.7', '3.8', '3.9', 'pypy3' ]
os: [windows-latest, ubuntu-latest] #, macos-latest]
- exclude:
- - os: windows-latest
- python_version: "pypy2"
include:
- - os: ubuntu-latest
- python_version: '3.9-dev'
- os: windows-latest
python_version: 'msys2'
@@ -31,13 +26,7 @@ jobs:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v2
- if: matrix.python_version != '3.9-dev' && matrix.python_version != 'msys2'
- with:
- python-version: ${{ matrix.python_version }}
- architecture: x64
- - name: Set up Python ${{ matrix.python_version }} (deadsnakes)
- uses: deadsnakes/action@v2.0.1
- if: matrix.python_version == '3.9-dev'
+ if: matrix.python_version != 'msys2'
with:
python-version: ${{ matrix.python_version }}
architecture: x64
@@ -58,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python_version: [ '3.6', '3.7', '3.8', '3.9', 'pypy3' ]
+ python_version: [ '3.6', '3.9', 'pypy3' ]
installer: ["pip install", easy_install]
name: check self install - Python ${{ matrix.python_version }} via ${{ matrix.installer }}
steps:
@@ -85,12 +74,12 @@ jobs:
name: Python ${{ matrix.python_version }} eggs
strategy:
matrix:
- python_version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9-dev']
+ python_version: ['3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v2
- if: matrix.python_version != '3.9-dev'
+ if: matrix.python_version != '3.9'
with:
python-version: ${{ matrix.python_version }}
architecture: x64