From 687032e0b122a46fc73184fd7a0bea18e7b1a383 Mon Sep 17 00:00:00 2001 From: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com> Date: Wed, 26 May 2021 16:38:41 -0400 Subject: [PATCH] chore: add Python 3.9 to supported versions (#52) --- .github/workflows/test.yaml | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9d814ff97a..f1ada81f03 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -48,7 +48,7 @@ jobs: strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 5fbada5fbe..0a855ab418 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ "ape_networks=ape_networks._cli:cli", ], }, - python_requires=">=3.6,<3.9", + python_requires=">=3.6,<3.10", extras_require=extras_require, py_modules=[ "ape", @@ -122,5 +122,6 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], )