@@ -70,30 +70,16 @@ fn verify_python_in_jupyter_contaner() {
7070 } ) ,
7171 ..Default :: default ( )
7272 } ;
73- let codespace_python = PythonEnvironment {
74- kind : Some ( PythonEnvironmentKind :: GlobalPaths ) ,
75- executable : Some ( PathBuf :: from ( "/home/codespace/.python/current/bin/python" ) ) ,
76- prefix : Some ( PathBuf :: from ( "/usr/local/python/3.10.13" ) ) ,
77- version : Some ( "3.10.13.final.0" . to_string ( ) ) ,
78- arch : Some ( Architecture :: X64 ) ,
79- symlinks : Some ( vec ! [
80- PathBuf :: from( "/home/codespace/.python/current/bin/python" ) ,
81- PathBuf :: from( "/home/codespace/.python/current/bin/python3" ) ,
82- PathBuf :: from( "/home/codespace/.python/current/bin/python3.10" ) ,
83- ] ) ,
84- manager : None ,
85- ..Default :: default ( )
86- } ;
8773 let current_python = PythonEnvironment {
8874 kind : Some ( PythonEnvironmentKind :: GlobalPaths ) ,
89- executable : Some ( PathBuf :: from ( "/usr/local/python/current /bin/python" ) ) ,
75+ executable : Some ( PathBuf :: from ( "/usr/local/python/3.10.13 /bin/python" ) ) ,
9076 prefix : Some ( PathBuf :: from ( "/usr/local/python/3.10.13" ) ) ,
9177 version : Some ( "3.10.13.final.0" . to_string ( ) ) ,
9278 arch : Some ( Architecture :: X64 ) ,
9379 symlinks : Some ( vec ! [
94- PathBuf :: from( "/usr/local/python/current /bin/python" ) ,
95- PathBuf :: from( "/usr/local/python/current /bin/python3" ) ,
96- PathBuf :: from( "/usr/local/python/current /bin/python3.10" ) ,
80+ PathBuf :: from( "/usr/local/python/3.10.13 /bin/python" ) ,
81+ PathBuf :: from( "/usr/local/python/3.10.13 /bin/python3" ) ,
82+ PathBuf :: from( "/usr/local/python/3.10.13 /bin/python3.10" ) ,
9783 ] ) ,
9884 manager : None ,
9985 ..Default :: default ( )
@@ -111,26 +97,11 @@ fn verify_python_in_jupyter_contaner() {
11197 manager : None ,
11298 ..Default :: default ( )
11399 } ;
114- let bin_python = PythonEnvironment {
115- kind : Some ( PythonEnvironmentKind :: LinuxGlobal ) ,
116- executable : Some ( PathBuf :: from ( "/bin/python3" ) ) ,
117- prefix : Some ( PathBuf :: from ( "/usr" ) ) ,
118- version : Some ( "3.8.10.final.0" . to_string ( ) ) ,
119- arch : Some ( Architecture :: X64 ) ,
120- symlinks : Some ( vec ! [
121- PathBuf :: from( "/bin/python3" ) ,
122- PathBuf :: from( "/bin/python3.8" ) ,
123- ] ) ,
124- manager : None ,
125- ..Default :: default ( )
126- } ;
127100
128101 for env in [
129102 conda,
130- codespace_python,
131103 current_python,
132104 usr_bin_python,
133- bin_python,
134105 ]
135106 . iter ( )
136107 {
0 commit comments