Skip to content

Commit fef5dbe

Browse files
authored
Allow all Python 3.10 versions (#1074)
Dropping only the patch version doesn't work with poetry as it still thinks version 3.10.1 is larger than "<=3.10". So we'll simply allow everything below 3.11.
1 parent 49f65ae commit fef5dbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
]
2727

2828
[tool.poetry.dependencies]
29-
python = ">=3.6.2, <=3.10"
29+
python = ">=3.6.2, <3.11"
3030

3131
boto3 = "^1.20.17"
3232
botocore = "^1.23.17"

test_infra/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Amazon Web Services"]
66
license = "Apache License 2.0"
77

88
[tool.poetry.dependencies]
9-
python = ">=3.6.2, <3.10"
9+
python = ">=3.6.2, <3.11"
1010
"aws-cdk.core" = "^1.124.0"
1111
"aws-cdk.aws-ec2" = "^1.124.0"
1212
"aws-cdk.aws-glue" = "^1.124.0"

0 commit comments

Comments
 (0)