Skip to content

Commit a1a6131

Browse files
authored
chore: check-pack-prerequisites checks for python 3.8 now (aws#28054)
Minimum required version enforced by jsii-pacmak. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent b341f26 commit a1a6131

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The following tools need to be installed on your system prior to installing the
106106
- We recommend using a version in [Active LTS](https://nodejs.org/en/about/releases/)
107107
- [Yarn >= 1.19.1, < 2](https://yarnpkg.com/lang/en/docs/install)
108108
- [.NET SDK >= 6.0.x](https://www.microsoft.com/net/download)
109-
- [Python >= 3.6.5, < 4.0](https://www.python.org/downloads/release/python-365/)
109+
- [Python >= 3.8.0, < 4.0](https://www.python.org/downloads/release/python-380/)
110110
- [Docker >= 19.03](https://docs.docker.com/get-docker/)
111111
- the Docker daemon must also be running
112112

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The CDK is available in the following languages:
2323

2424
* JavaScript, TypeScript ([Node.js ≥ 14.15.0](https://nodejs.org/download/release/latest-v14.x/))
2525
* We recommend using a version in [Active LTS](https://nodejs.org/en/about/previous-releases)
26-
* Python ([Python ≥ 3.6](https://www.python.org/downloads/))
26+
* Python ([Python ≥ 3.8](https://www.python.org/downloads/))
2727
* Java ([Java ≥ 8](https://www.oracle.com/technetwork/java/javase/downloads/index.html) and [Maven ≥ 3.5.4](https://maven.apache.org/download.cgi))
2828
* .NET ([.NET ≥ 6.0](https://dotnet.microsoft.com/download))
2929
* Go ([Go ≥ 1.16.4](https://golang.org/))

scripts/check-pack-prerequisites.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ else
8686
wrong_version
8787
fi
8888

89-
# [Python >= 3.6.5, < 4.0]
89+
# [Python >= 3.8.0, < 4.0]
9090
app="python3"
91-
app_min="3.6.5"
91+
app_min="3.8.0"
9292
check_which $app $app_min
9393
app_v=$(${app} --version)
9494
echo -e "Checking $app version... \c"

0 commit comments

Comments
 (0)