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 b40e715 commit be4d4deCopy full SHA for be4d4de
test/runtests.jl
@@ -1,7 +1,12 @@
1
-# The next two lines added as a workaround to
2
-# https://github.com/JuliaLang/Pkg.jl/issues/3628 (Julia 1.6):
3
import Pkg
4
-Pkg.add(name="Statistics", version=VERSION)
+
+if Base.VERSION >= v"1.10-"
+ # The issue with stdlib versions being fixed to 0.0.0 has been fixed in new versions of Julia
5
+else
6
+ # The next line added as a workaround to
7
+ # https://github.com/JuliaLang/Pkg.jl/issues/3628 (Julia 1.6):
8
+ Pkg.add(name="Statistics", version=VERSION, uuid="10745b16-79ce-11e8-11f9-7d13ad32a3b2")
9
+end
10
11
using Test, MLJModels
12
0 commit comments