From 4555a608946d7ecee68082b1c5cdde2557ba4455 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 19 Jan 2021 17:47:05 +0100 Subject: ci: Remove special-casing for Python 3.9 (#24) It's a regular release nowadays. --- .github/workflows/ci.yml | 12 ------------ 1 file changed, 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: 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: -- cgit v1.2.3