From 6bfba18ec403f702666b4109db3d95f3b97b1dc5 Mon Sep 17 00:00:00 2001 From: Aku Kotkavuo Date: Tue, 2 Mar 2021 14:51:36 +0200 Subject: [PATCH] Add Python 3.9 to tests --- .github/workflows/pythonpackage.yml | 4 ++-- setup.py | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 82695a8..77d9d33 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -7,9 +7,9 @@ jobs: runs-on: ubuntu-latest strategy: - max-parallel: 5 + max-parallel: 6 matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index d83abe3..91c8567 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,9 @@ 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Games/Entertainment :: Real Time Strategy', 'Topic :: Software Development :: Libraries', 'Topic :: System :: Archiving',