@@ -50,7 +50,7 @@ fn verify_python_in_homebrew_contaner() {
50
50
let python3_12 = PythonEnvironment {
51
51
kind : Some ( PythonEnvironmentKind :: Homebrew ) ,
52
52
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
54
54
symlinks : Some ( vec ! [
55
55
PathBuf :: from( "/home/linuxbrew/.linuxbrew/bin/python3" ) ,
56
56
PathBuf :: from( "/home/linuxbrew/.linuxbrew/bin/python3.12" ) ,
@@ -61,19 +61,19 @@ fn verify_python_in_homebrew_contaner() {
61
61
PathBuf :: from
( "/home/linuxbrew/.linuxbrew/opt/[email protected] /bin/python3" ) ,
62
62
PathBuf :: from
( "/home/linuxbrew/.linuxbrew/opt/[email protected] /bin/python3.12" ) ,
63
63
// 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"),
65
65
] ) ,
66
66
..Default :: default ( )
67
67
} ;
68
68
let python3_11 = PythonEnvironment {
69
69
kind : Some ( PythonEnvironmentKind :: Homebrew ) ,
70
70
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
72
72
symlinks : Some ( vec ! [
73
73
PathBuf :: from( "/home/linuxbrew/.linuxbrew/bin/python3.11" ) ,
74
74
PathBuf :: from
( "/home/linuxbrew/.linuxbrew/opt/[email protected] /bin/python3.11" ) ,
75
75
// 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"),
77
77
] ) ,
78
78
..Default :: default ( )
79
79
} ;
0 commit comments