Skip to content

Commit 485029e

Browse files
authored
Declare support for Python 3.9 (#2942)
1 parent 09041c4 commit 485029e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8]
16+
python-version: [3.6, 3.7, 3.8, 3.9]
1717
os: [ubuntu-latest, macOS-latest, windows-latest ]
1818

1919
steps:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
import os
77
import re
88

9-
from setuptools import setup, find_packages
10-
9+
from setuptools import find_packages, setup
1110

1211
ROOT = os.path.dirname(__file__)
1312
VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
@@ -54,6 +53,7 @@ def get_version():
5453
'Programming Language :: Python :: 3.6',
5554
'Programming Language :: Python :: 3.7',
5655
'Programming Language :: Python :: 3.8',
56+
'Programming Language :: Python :: 3.9',
5757
],
5858
project_urls={
5959
'Documentation': 'https://boto3.amazonaws.com/v1/documentation/api/latest/index.html',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38
2+
envlist = py36,py37,py38,py39
33

44
# Comment to build sdist and install into virtualenv
55
# This is helpful to test installation but takes extra time

0 commit comments

Comments
 (0)