@@ -71,30 +71,16 @@ fn verify_python_in_jupyter_contaner() {
7171 } ) ,
7272 ..Default :: default ( )
7373 } ;
74- let codespace_python = PythonEnvironment {
75- kind : Some ( PythonEnvironmentKind :: GlobalPaths ) ,
76- executable : Some ( PathBuf :: from ( "/home/codespace/.python/current/bin/python" ) ) ,
77- prefix : Some ( PathBuf :: from ( "/usr/local/python/3.10.13" ) ) ,
78- version : Some ( "3.10.13.final.0" . to_string ( ) ) ,
79- arch : Some ( Architecture :: X64 ) ,
80- symlinks : Some ( vec ! [
81- PathBuf :: from( "/home/codespace/.python/current/bin/python" ) ,
82- PathBuf :: from( "/home/codespace/.python/current/bin/python3" ) ,
83- PathBuf :: from( "/home/codespace/.python/current/bin/python3.10" ) ,
84- ] ) ,
85- manager : None ,
86- ..Default :: default ( )
87- } ;
8874 let current_python = PythonEnvironment {
8975 kind : Some ( PythonEnvironmentKind :: GlobalPaths ) ,
90- executable : Some ( PathBuf :: from ( "/usr/local/python/current /bin/python" ) ) ,
76+ executable : Some ( PathBuf :: from ( "/usr/local/python/3.10.13 /bin/python" ) ) ,
9177 prefix : Some ( PathBuf :: from ( "/usr/local/python/3.10.13" ) ) ,
9278 version : Some ( "3.10.13.final.0" . to_string ( ) ) ,
9379 arch : Some ( Architecture :: X64 ) ,
9480 symlinks : Some ( vec ! [
95- PathBuf :: from( "/usr/local/python/current /bin/python" ) ,
96- PathBuf :: from( "/usr/local/python/current /bin/python3" ) ,
97- PathBuf :: from( "/usr/local/python/current /bin/python3.10" ) ,
81+ PathBuf :: from( "/usr/local/python/3.10.13 /bin/python" ) ,
82+ PathBuf :: from( "/usr/local/python/3.10.13 /bin/python3" ) ,
83+ PathBuf :: from( "/usr/local/python/3.10.13 /bin/python3.10" ) ,
9884 ] ) ,
9985 manager : None ,
10086 ..Default :: default ( )
@@ -112,26 +98,11 @@ fn verify_python_in_jupyter_contaner() {
11298 manager : None ,
11399 ..Default :: default ( )
114100 } ;
115- let bin_python = PythonEnvironment {
116- kind : Some ( PythonEnvironmentKind :: LinuxGlobal ) ,
117- executable : Some ( PathBuf :: from ( "/bin/python3" ) ) ,
118- prefix : Some ( PathBuf :: from ( "/usr" ) ) ,
119- version : Some ( "3.8.10.final.0" . to_string ( ) ) ,
120- arch : Some ( Architecture :: X64 ) ,
121- symlinks : Some ( vec ! [
122- PathBuf :: from( "/bin/python3" ) ,
123- PathBuf :: from( "/bin/python3.8" ) ,
124- ] ) ,
125- manager : None ,
126- ..Default :: default ( )
127- } ;
128101
129102 for env in [
130103 conda,
131- codespace_python,
132104 current_python,
133105 usr_bin_python,
134- bin_python,
135106 ]
136107 . iter ( )
137108 {
0 commit comments