From 36da7b1e0c347f83a05126384d685b2f655d26a6 Mon Sep 17 00:00:00 2001 From: Sondre Sortland Date: Tue, 4 May 2021 12:25:24 +0200 Subject: [PATCH] Add support for Python 3.9 --- .github/workflows/test_and_deploy.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 2f72ab54ff..1a82a12739 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -53,7 +53,7 @@ jobs: fail-fast: false matrix: os: ['ubuntu-latest', 'macos-latest'] - python: ['3.6', '3.7', '3.8'] + python: ['3.6', '3.7', '3.8', '3.9'] runs-on: ${{ matrix.os }} diff --git a/setup.py b/setup.py index ca9ed8a4ee..44b4cab549 100644 --- a/setup.py +++ b/setup.py @@ -85,6 +85,7 @@ def get_data_files(): "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Physics", "Topic :: Software Development :: Libraries",