Skip to content

Commit 76a599b

Browse files
authored
Add support for Python 3.10 (#3009)
1 parent 4d4aa02 commit 76a599b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
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, 3.9]
16+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
1717
os: [ubuntu-latest, macOS-latest, windows-latest ]
1818

1919
steps:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def get_version():
5454
'Programming Language :: Python :: 3.7',
5555
'Programming Language :: Python :: 3.8',
5656
'Programming Language :: Python :: 3.9',
57+
'Programming Language :: Python :: 3.10',
5758
],
5859
project_urls={
5960
'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,py39
2+
envlist = py36,py37,py38,py39,py310
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)