Skip to content

Commit 7e5b2a0

Browse files
committed
Add compat to deal with 1.6
1 parent 7643df6 commit 7e5b2a0

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
matrix:
1313
version:
1414
- '1.6'
15-
- '1'
1615
- 'nightly'
1716
os:
1817
- ubuntu-latest

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name = "IntervalArithmetic"
22
uuid = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
33
repo = "https://github.com/JuliaIntervals/IntervalArithmetic.jl.git"
4-
version = "0.20.6"
4+
version = "1.0.0"
55

66
[deps]
77
CRlibm = "96374032-68de-5a5b-8d9e-752f78720389"
8+
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
89
EnumX = "4e289a0a-7415-4d19-859d-a7e5c4648b56"
910
FastRounding = "fa42c844-2597-5d31-933b-ebd51ab2693f"
1011
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -16,6 +17,7 @@ SetRounding = "3cc68bcd-71a2-5612-b932-767ffbe40ab0"
1617
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1718

1819
[compat]
20+
Compat = "3.41, 4"
1921
CRlibm = "0.7, 0.8, 1"
2022
EnumX = "1"
2123
FastRounding = "0.2, 0.3"
@@ -25,7 +27,7 @@ RecipesBase = "1.0"
2527
RoundingEmulator = "0.2"
2628
SetRounding = "0.2"
2729
StaticArrays = "1.0"
28-
julia = "1.5"
30+
julia = "1.6"
2931

3032
[extras]
3133
IntervalContractors = "15111844-de3b-5229-b4ba-526f2f385dc9"

src/IntervalArithmetic.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import CRlibm
66
import FastRounding
77
import RoundingEmulator
88

9+
using Compat
910
using LinearAlgebra
1011
using Markdown
1112
using StaticArrays

0 commit comments

Comments
 (0)