We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b8bd55 commit 122532aCopy full SHA for 122532a
ext/PyCallExt.jl
@@ -1,5 +1,11 @@
1
module PyCallExt
2
3
+# While this extension is precompilable, it can only be used without crashing if PyCall is
4
+# using the same Python interpreter. However Julia precompiles all available extensions
5
+# eagerly, which therefore crashes if PyCall is using a different interpreter. So for now
6
+# we disable precompilation of this extension entirely.
7
+__precompile__(false)
8
+
9
using PythonCall
10
using PythonCall.Core
11
using PythonCall.C
0 commit comments