From 8c92f92ef0adf5a546619f5761595526589ecc38 Mon Sep 17 00:00:00 2001 From: Kaizen Conroy Date: Fri, 17 Nov 2023 13:52:12 -0500 Subject: [PATCH 1/2] chore: check-pack-prerequisites checks for python 3.8 now --- README.md | 2 +- scripts/check-pack-prerequisites.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d69b0f6571705..4d7e3b64dfc2c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The CDK is available in the following languages: * JavaScript, TypeScript ([Node.js ≥ 14.15.0](https://nodejs.org/download/release/latest-v14.x/)) * We recommend using a version in [Active LTS](https://nodejs.org/en/about/previous-releases) -* Python ([Python ≥ 3.6](https://www.python.org/downloads/)) +* Python ([Python ≥ 3.8](https://www.python.org/downloads/)) * Java ([Java ≥ 8](https://www.oracle.com/technetwork/java/javase/downloads/index.html) and [Maven ≥ 3.5.4](https://maven.apache.org/download.cgi)) * .NET ([.NET ≥ 6.0](https://dotnet.microsoft.com/download)) * Go ([Go ≥ 1.16.4](https://golang.org/)) diff --git a/scripts/check-pack-prerequisites.sh b/scripts/check-pack-prerequisites.sh index b0da6e81286a6..17be553e2f09b 100755 --- a/scripts/check-pack-prerequisites.sh +++ b/scripts/check-pack-prerequisites.sh @@ -86,9 +86,9 @@ else wrong_version fi -# [Python >= 3.6.5, < 4.0] +# [Python >= 3.8.0, < 4.0] app="python3" -app_min="3.6.5" +app_min="3.8.0" check_which $app $app_min app_v=$(${app} --version) echo -e "Checking $app version... \c" From 57b81684ab915773e0502fd0dac39fe6b595253e Mon Sep 17 00:00:00 2001 From: Kaizen Conroy Date: Fri, 17 Nov 2023 13:54:05 -0500 Subject: [PATCH 2/2] cont guide --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e9f220a7f26c4..ae89ac8e761f3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -106,7 +106,7 @@ The following tools need to be installed on your system prior to installing the - We recommend using a version in [Active LTS](https://nodejs.org/en/about/releases/) - [Yarn >= 1.19.1, < 2](https://yarnpkg.com/lang/en/docs/install) - [.NET SDK >= 6.0.x](https://www.microsoft.com/net/download) -- [Python >= 3.6.5, < 4.0](https://www.python.org/downloads/release/python-365/) +- [Python >= 3.8.0, < 4.0](https://www.python.org/downloads/release/python-380/) - [Docker >= 19.03](https://docs.docker.com/get-docker/) - the Docker daemon must also be running