Skip to content

Commit 52e551e

Browse files
Python 3.10 support (#990)
* [skip ci] Prepare for Py 3.10 support * [skip ci] Remove 3.10 from Black targets Co-authored-by: jaidisido <[email protected]>
1 parent c131f9c commit 52e551e

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

poetry.lock

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ classifiers = [
2222
"Programming Language :: Python :: 3.7",
2323
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
2526
]
2627

2728
[tool.poetry.dependencies]
28-
python = ">=3.6.2, <3.10"
29+
python = ">=3.6.2, <=3.10.0"
2930

3031
boto3 = "^1.16.8"
3132
botocore = "^1.19.8"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39}
2+
envlist = py{36,37,38,39,310}
33
isolated_build = True
44

55
[testenv]
@@ -16,7 +16,7 @@ commands =
1616
pytest -n {posargs} -s -v --timeout=300 --reruns=2 --reruns-delay=60 \
1717
--junitxml=test-reports/junit.xml --log-file=test-reports/logs.txt tests
1818

19-
[testenv:py39]
19+
[testenv:py310]
2020
passenv = AWS_PROFILE AWS_DEFAULT_REGION AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN
2121
deps =
2222
{[testenv]deps}

0 commit comments

Comments
 (0)