summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-19 17:47:05 +0100
committerGitHub <noreply@github.com>2021-01-19 16:47:05 +0000
commit4555a608946d7ecee68082b1c5cdde2557ba4455 (patch)
tree58007d7dd59596d140ee881748f0b98e7654495a
parent9c684f12e1050d8b0dce9cb1e66eb2de0c5f3be6 (diff)
ci: Remove special-casing for Python 3.9 (#24)
It's a regular release nowadays.
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 0 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 43e7e20..c4179e4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -48,15 +48,9 @@ jobs:
48 uses: actions/checkout@v1 48 uses: actions/checkout@v1
49 49
50 - uses: actions/setup-python@v2 50 - uses: actions/setup-python@v2
51 if: matrix.python-version != 3.9
52 with: 51 with:
53 python-version: ${{ matrix.python-version }} 52 python-version: ${{ matrix.python-version }}
54 53
55 - uses: actions/setup-python@v2
56 if: matrix.python-version == 3.9
57 with:
58 python-version: '3.9.0-alpha - 3.9.0'
59
60 - name: Install dependencies 54 - name: Install dependencies
61 run: | 55 run: |
62 python -m pip install --upgrade pip 56 python -m pip install --upgrade pip
@@ -86,15 +80,9 @@ jobs:
86 - uses: actions/checkout@v1 80 - uses: actions/checkout@v1
87 81
88 - uses: actions/setup-python@v2 82 - uses: actions/setup-python@v2
89 if: matrix.python-version != 3.9
90 with: 83 with:
91 python-version: ${{ matrix.python-version }} 84 python-version: ${{ matrix.python-version }}
92 85
93 - uses: actions/setup-python@v2
94 if: matrix.python-version == 3.9
95 with:
96 python-version: '3.9.0-alpha - 3.9.0'
97
98 - name: Install latest nightly 86 - name: Install latest nightly
99 uses: actions-rs/toolchain@v1 87 uses: actions-rs/toolchain@v1
100 with: 88 with: