@@ -50,7 +50,7 @@ fn verify_python_in_homebrew_contaner() {
5050 let python3_12 = PythonEnvironment {
5151 kind : Some ( PythonEnvironmentKind :: Homebrew ) ,
5252 executable : Some ( PathBuf :: from ( "/home/linuxbrew/.linuxbrew/bin/python3" ) ) ,
53- version : Some ( "3.12.5 " . to_string ( ) ) , // This can change on CI, so we don't check it
53+ version : Some ( "3.12.6 " . to_string ( ) ) , // This can change on CI, so we don't check it
5454 symlinks : Some ( vec ! [
5555 PathBuf :: from( "/home/linuxbrew/.linuxbrew/bin/python3" ) ,
5656 PathBuf :: from( "/home/linuxbrew/.linuxbrew/bin/python3.12" ) ,
@@ -61,19 +61,19 @@ fn verify_python_in_homebrew_contaner() {
6161 PathBuf :: from
( "/home/linuxbrew/.linuxbrew/opt/[email protected] /bin/python3" ) , 6262 PathBuf :: from
( "/home/linuxbrew/.linuxbrew/opt/[email protected] /bin/python3.12" ) , 6363 // On CI the Python version can change with minor updates, so we don't check the full version.
64- // PathBuf::from("/home/linuxbrew/.linuxbrew/Cellar/[email protected] /3.12.5 /bin/python3.12"), 64+ // PathBuf::from("/home/linuxbrew/.linuxbrew/Cellar/[email protected] /3.12.6 /bin/python3.12"), 6565 ] ) ,
6666 ..Default :: default ( )
6767 } ;
6868 let python3_11 = PythonEnvironment {
6969 kind : Some ( PythonEnvironmentKind :: Homebrew ) ,
7070 executable : Some ( PathBuf :: from ( "/home/linuxbrew/.linuxbrew/bin/python3.11" ) ) ,
71- version : Some ( "3.11.9 " . to_string ( ) ) , // This can change on CI, so we don't check it
71+ version : Some ( "3.11.10 " . to_string ( ) ) , // This can change on CI, so we don't check it
7272 symlinks : Some ( vec ! [
7373 PathBuf :: from( "/home/linuxbrew/.linuxbrew/bin/python3.11" ) ,
7474 PathBuf :: from
( "/home/linuxbrew/.linuxbrew/opt/[email protected] /bin/python3.11" ) , 7575 // On CI the Python version can change with minor updates, so we don't check the full version.
76- // PathBuf::from("/home/linuxbrew/.linuxbrew/Cellar/[email protected] /3.11.9 /bin/python3.11"), 76+ // PathBuf::from("/home/linuxbrew/.linuxbrew/Cellar/[email protected] /3.11.10 /bin/python3.11"), 7777 ] ) ,
7878 ..Default :: default ( )
7979 } ;
0 commit comments