vagrant: update python versions, use 3.11 for binary build, fixes #7987

This commit is contained in:
Thomas Waldmann 2023-12-24 01:19:13 +01:00
parent 35eca86f23
commit 5d8bf2f81d
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 4 additions and 4 deletions

8
Vagrantfile vendored
View File

@ -158,10 +158,10 @@ end
def install_pythons(boxname)
return <<-EOF
. ~/.bash_profile
pyenv install 3.12.0 # tests, version supporting openssl 1.1
pyenv install 3.11.7 # tests, version supporting openssl 1.1, binary build
pyenv install 3.10.2 # tests, version supporting openssl 1.1
pyenv install 3.9.3 # tests, version supporting openssl 1.1
pyenv install 3.12.0 # tests
pyenv install 3.11.7 # tests, binary build
pyenv install 3.10.2 # tests
pyenv install 3.9.3 # tests
pyenv rehash
EOF
end