commit 4555a608946d7ecee68082b1c5cdde2557ba4455
parent 9c684f12e1050d8b0dce9cb1e66eb2de0c5f3be6
Author: Florian Bruhin <me@the-compiler.org>
Date: Tue, 19 Jan 2021 17:47:05 +0100
ci: Remove special-casing for Python 3.9 (#24)
It's a regular release nowadays.
Diffstat:
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -48,15 +48,9 @@ jobs:
uses: actions/checkout@v1
- uses: actions/setup-python@v2
- if: matrix.python-version != 3.9
with:
python-version: ${{ matrix.python-version }}
- - uses: actions/setup-python@v2
- if: matrix.python-version == 3.9
- with:
- python-version: '3.9.0-alpha - 3.9.0'
-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
@@ -86,15 +80,9 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
- if: matrix.python-version != 3.9
with:
python-version: ${{ matrix.python-version }}
- - uses: actions/setup-python@v2
- if: matrix.python-version == 3.9
- with:
- python-version: '3.9.0-alpha - 3.9.0'
-
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with: