From a0b715e146ab3cd5aad428955be45eed1671545f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rni=20Dagur?= Date: Tue, 22 Sep 2020 05:22:28 +0000 Subject: Build Python 3.9 wheels --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4071231..c60acd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, macos-latest, windows-latest] exclude: # There is a known issue where Python C extensions @@ -86,7 +86,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, macos-latest, windows-latest] exclude: # There is a known issue where Python C extensions -- cgit v1.2.3 From 743d08b7311cf973f3930d650f773916fa81eca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rni=20Dagur?= Date: Tue, 22 Sep 2020 05:23:40 +0000 Subject: CI: Only build documentation on push --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c60acd2..5c0bf52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -150,7 +150,7 @@ jobs: docs-publish: runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' + if: github.ref == 'refs/heads/master' && github.event.action == 'push' steps: - uses: actions/checkout@v2 with: -- cgit v1.2.3 From 1f73df47e5a0fd41b912ba21c5897b4c77401db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rni=20Dagur?= Date: Tue, 22 Sep 2020 05:33:19 +0000 Subject: CI: Fix the setting up of Python 3.9 --- .github/workflows/ci.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c0bf52..141fea4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,11 +53,16 @@ jobs: - name: Checkout uses: actions/checkout@v1 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@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 @@ -98,10 +103,16 @@ jobs: steps: - uses: actions/checkout@v1 - - uses: actions/setup-python@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