File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function set(prefs::PythonPreferences)
23
23
if prefs. python === nothing
24
24
@delete_preferences! (" python" )
25
25
else
26
- @set_preferences! (" python" => get_python_fullpath ( prefs. python) )
26
+ @set_preferences! (" python" => prefs. python)
27
27
end
28
28
if prefs. inprocess
29
29
@set_preferences! (" inprocess" => prefs. inprocess)
@@ -53,13 +53,12 @@ function _load_python_preferences()
53
53
# isempty(rawprefs) && return nothing
54
54
55
55
# default value
56
- if ! _inprocess && ! _conda && _python === nothing
57
- _python = get_python_fullpath (get_default_python ())
58
- @info " Setting default Python interpreter to $(_python) "
59
- return set (python= _python)
60
- else
61
- return PythonPreferences (_python, _inprocess, _conda)
62
- end
56
+ # if !_inprocess && !_conda && _python === nothing
57
+ # _python = get_python_fullpath(get_default_python())
58
+ # @info "Setting default Python interpreter to $(_python)"
59
+ # return set(python=_python)
60
+ # end
61
+ return PythonPreferences (_python, _inprocess, _conda)
63
62
end
64
63
65
64
function load_pypreferences_code ()
You can’t perform that action at this time.
0 commit comments