We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ab345e commit bef6afaCopy full SHA for bef6afa
pysrc/juliacall/__init__.py
@@ -129,6 +129,7 @@ def args_from_config():
129
CONFIG['opt_sysimage'] = sysimg = path_option('sysimage', check_exists=True)[0]
130
CONFIG['opt_threads'] = int_option('threads', accept_auto=True)[0]
131
CONFIG['opt_warn_overwrite'] = choice('warn_overwrite', ['yes', 'no'])[0]
132
+ CONFIG['opt_handle_signals'] = 'no'
133
134
# Stop if we already initialised
135
if CONFIG['inited']:
@@ -185,6 +186,7 @@ def jlstr(x):
185
186
return 'raw"' + x.replace('"', '\\"').replace('\\', '\\\\') + '"'
187
script = '''
188
try
189
+ Base.require(Main, :CompilerSupportLibraries_jll)
190
import Pkg
191
ENV["JULIA_PYTHONCALL_LIBPTR"] = {}
192
ENV["JULIA_PYTHONCALL_EXE"] = {}
0 commit comments