From 773524c143e566d945d94b37e55c7a85e59cc1fe Mon Sep 17 00:00:00 2001 From: Renan Ivo Date: Mon, 12 Oct 2020 22:30:17 -0300 Subject: [PATCH] Use final version of Python 3.9 at CI/CD --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85578ef..1680c12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9-dev, pypy3] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3] os: [ubuntu-latest, macos-latest] pytest: [ "pytest==3.7.0", diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0e7a98..c552ccd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.9' - name: Get pip cache dir id: pip-cache