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 4268eca commit 1de6077Copy full SHA for 1de6077
test/GC.jl
@@ -5,7 +5,9 @@
5
finalize(obj)
6
end
7
8
- Threads.nthreads() > 1 && @test !isempty(PythonCall.GC.QUEUE.items)
+ Threads.nthreads() > 1 &&
9
+ VERSION >= v"1.10.0-" &&
10
+ @test !isempty(PythonCall.GC.QUEUE.items)
11
PythonCall.GC.gc()
12
@test isempty(PythonCall.GC.QUEUE.items)
13
@@ -17,7 +19,9 @@ end
17
19
18
20
21
22
23
24
25
GC.gc()
26
27
0 commit comments