From c0296fee3931e9c4e6ee7bc41172fd551281e11e Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Wed, 15 Dec 2021 12:20:13 +0100 Subject: [PATCH] Allow all Python 3.10 versions 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. --- pyproject.toml | 2 +- test_infra/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 733bfdecd..343045519 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.6.2, <=3.10" +python = ">=3.6.2, <3.11" boto3 = "^1.20.17" botocore = "^1.23.17" diff --git a/test_infra/pyproject.toml b/test_infra/pyproject.toml index fc9004ea2..1f58359e4 100644 --- a/test_infra/pyproject.toml +++ b/test_infra/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Amazon Web Services"] license = "Apache License 2.0" [tool.poetry.dependencies] -python = ">=3.6.2, <3.10" +python = ">=3.6.2, <3.11" "aws-cdk.core" = "^1.124.0" "aws-cdk.aws-ec2" = "^1.124.0" "aws-cdk.aws-glue" = "^1.124.0"