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 64daf52 commit dda204dCopy full SHA for dda204d
test/runtests.jl
@@ -41,7 +41,9 @@ include("test_util.jl")
41
42
# Don't attempt to import Mooncake on 1.12
43
# https://github.com/chalk-lab/Mooncake.jl/pull/545
44
-IS_PRERELEASE = VERSION >= v"1.12"
+# the check against v"1.12-" includes prerelease versions,
45
+# whereas >=v"1.12" would only catch 1.12.0 onwards
46
+IS_PRERELEASE = VERSION >= v"1.12-"
47
48
if !IS_PRERELEASE
49
Pkg.add("Mooncake")
0 commit comments