Closed KristofferC closed 2 years ago
In Julia 1.9, the Iterators module is a baremodule and you can no longer access Base functions though it. Iterators.repeat was in fact doing the equivalent of Iterators.Base.repeat so we can just drop the Iterators prefix all together.
Iterators
baremodule
Iterators.repeat
Iterators.Base.repeat
This fixes the tests in 1.9.
Nvm, https://github.com/ctrekker/Deductive.jl/pull/27.
In Julia 1.9, the
Iterators
module is abaremodule
and you can no longer access Base functions though it.Iterators.repeat
was in fact doing the equivalent ofIterators.Base.repeat
so we can just drop theIterators
prefix all together.This fixes the tests in 1.9.