We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b3902 commit 321f92eCopy full SHA for 321f92e
test/Compat.jl
@@ -50,10 +50,11 @@ end
50
end
51
52
@testitem "PyCall.jl" begin
53
- if (get(ENV, "CI", "") != "") && (ENV["JULIA_PYTHONCALL_EXE"] == "python")
+ if (get(ENV, "CI", "") != "") && (ENV["JULIA_PYTHONCALL_EXE"] == "python") && !PythonCall.C.CTX.is_free_threaded
54
# Only run this test when we can guarantee PyCall and PythonCall are using the
55
# same Python. Currently this only runs in CI, and if PythonCall is using the
56
- # system Python installation.
+ # system Python installation. Also PyCall is not compatible with free-threaded
57
+ # python so we skip this too.
58
using PyCall
59
# Check they are indeed using the same Python.
60
@test Base.get_extension(PythonCall, :PyCallExt).SAME[]
0 commit comments