diff options
author | Edmundo Gonzalez <51725820+edgonmsft@users.noreply.github.com> | 2022-10-26 02:07:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 02:07:05 +0300 |
commit | 520a4abc40c1fe4c914638ea73b42f2bde09d8e9 (patch) | |
tree | de5ec171d0b00886d1663ef37b723dfc8029bd87 /test/python/install_additional_python.sh | |
parent | fd31e97db06882a47819a47842b8e2d83b372ea6 (diff) |
Python version 3.11 (#237)
* Adding 3.11 option
* Updating tests.
Diffstat (limited to 'test/python/install_additional_python.sh')
-rw-r--r-- | test/python/install_additional_python.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/python/install_additional_python.sh b/test/python/install_additional_python.sh index b0393d3..00e43d8 100644 --- a/test/python/install_additional_python.sh +++ b/test/python/install_additional_python.sh @@ -5,8 +5,9 @@ set -e # Optional: Import test library source dev-container-features-test-lib -check "python version 3.10.5 installed as default" python --version | grep 3.10.5 -check "python3 version 3.10.5 installed as default" python3 --version | grep 3.10.5 +check "python version 3.11 installed as default" python --version | grep 3.11 +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.9.13 installed" ls -l /usr/local/python | grep 3.9.13 |