Sfoglia il codice sorgente

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

Thomas Waldmann 1 anno fa
parent
commit
5d8bf2f81d
1 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. 4 4
      Vagrantfile

+ 4 - 4
Vagrantfile

@@ -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