summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2020-05-24 13:28:16 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2020-05-24 13:28:16 +0200
commite1c247345643e30db6177d754864bd248a674818 (patch)
treeec2ee93d3e829c92b6995e7b34fdc39a0f013dff
parent426e3c319a65dfcc90e76fee4dd4c01e31517d1b (diff)
downloadsetuptools-scm-e1c247345643e30db6177d754864bd248a674818.tar.gz
also build python 3.9 eggs
-rw-r--r--.github/workflows/python-tests.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml
index 35d675a..9099eb2 100644
--- a/.github/workflows/python-tests.yml
+++ b/.github/workflows/python-tests.yml
@@ -75,13 +75,21 @@ jobs:
name: Python ${{ matrix.python_version }} eggs
strategy:
matrix:
- python_version: ['2.7', '3.5', '3.6', '3.7', '3.8']
+ python_version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9-dev']
steps:
- uses: actions/checkout@v1
- - name: Set up Python
- uses: actions/setup-python@v1
+ - name: Setup python
+ uses: actions/setup-python@v2
+ if: matrix.python_version != '3.9-dev'
with:
python-version: ${{ matrix.python_version }}
+ architecture: x64
+ - name: Set up Python ${{ matrix.python_version }} (deadsnakes)
+ uses: deadsnakes/action@v1.0.0
+ if: matrix.python_version == '3.9-dev'
+ with:
+ python-version: ${{ matrix.python_version }}
+ architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip