From 773524c143e566d945d94b37e55c7a85e59cc1fe Mon Sep 17 00:00:00 2001 From: Renan Ivo Date: Mon, 12 Oct 2020 22:30:17 -0300 Subject: [PATCH 1/2] 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 From da7c36de7461f22fa80f413c370db8934dfbd112 Mon Sep 17 00:00:00 2001 From: Renan Ivo Date: Mon, 12 Oct 2020 22:32:41 -0300 Subject: [PATCH 2/2] Add Python 3.9 classifier to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9a2d38e..6ad599a 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ def read(fname): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python',