Unverified Commit 520a4abc authored by Edmundo Gonzalez's avatar Edmundo Gonzalez Committed by GitHub

Python version 3.11 (#237)

* Adding 3.11 option

* Updating tests.
parent fd31e97d
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
"latest", "latest",
"os-provided", "os-provided",
"none", "none",
"3.11",
"3.10", "3.10",
"3.9", "3.9",
"3.8", "3.8",
......
...@@ -5,8 +5,9 @@ set -e ...@@ -5,8 +5,9 @@ set -e
# Optional: Import test library # Optional: Import test library
source dev-container-features-test-lib source dev-container-features-test-lib
check "python version 3.10.5 installed as default" python --version | grep 3.10.5 check "python version 3.11 installed as default" python --version | grep 3.11
check "python3 version 3.10.5 installed as default" python3 --version | grep 3.10.5 check "python3 version 3.11 installed as default" python3 --version | grep 3.11
check "python version 3.10.5 installed" ls -l /usr/local/python | grep 3.10.5
check "python version 3.8.13 installed" ls -l /usr/local/python | grep 3.8.13 check "python version 3.8.13 installed" ls -l /usr/local/python | grep 3.8.13
check "python version 3.9.13 installed" ls -l /usr/local/python | grep 3.9.13 check "python version 3.9.13 installed" ls -l /usr/local/python | grep 3.9.13
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
"image": "ubuntu:focal", "image": "ubuntu:focal",
"features": { "features": {
"python": { "python": {
"version": "3.10.5", "version": "3.11",
"additionalVersions": "3.8,3.9.13" "additionalVersions": "3.8,3.9.13,3.10.5"
} }
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment