소스 검색

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

Thomas Waldmann 1 년 전
부모
커밋
5d8bf2f81d
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  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