Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit 390c5e4

Browse files
committed
Fix version limits for min and max behaviour
1 parent 861c100 commit 390c5e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/intervals/arithmetic.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ end
155155

156156
//(a::Interval, b::Interval) = a / b # to deal with rationals
157157

158-
if VERSION >= v"0.6.0-dev"
158+
if VERSION >= v"0.6.0-dev.1024"
159159
const filter = Iterators.filter
160160
end
161161

162-
if VERSION < v"0.5"
162+
if VERSION < v"0.5.0-dev+1279"
163163
min(x) = x
164164
max(x) = x
165165
end

0 commit comments

Comments
 (0)