Skip to content

Commit a596c1a

Browse files
authored
Allow IntervalArithmetic v1 (#73)
* allow IntervalArithmetic v1 * update CI actions * drop x86 CI tests * bump version to 0.5.1
1 parent ca926f6 commit a596c1a

2 files changed

Lines changed: 6 additions & 19 deletions

File tree

.github/workflows/CI.yml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,16 @@ jobs:
1919
- windows-latest
2020
arch:
2121
- x64
22-
- x86
23-
exclude:
24-
- os: macOS-latest
25-
arch: x86
2622
steps:
27-
- uses: actions/checkout@v2
28-
- uses: julia-actions/setup-julia@v1
23+
- uses: actions/checkout@v6
24+
- uses: julia-actions/setup-julia@v2
2925
with:
3026
version: ${{ matrix.version }}
3127
arch: ${{ matrix.arch }}
32-
- uses: actions/cache@v4
33-
env:
34-
cache-name: cache-artifacts
35-
with:
36-
path: ~/.julia/artifacts
37-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38-
restore-keys: |
39-
${{ runner.os }}-test-${{ env.cache-name }}-
40-
${{ runner.os }}-test-
41-
${{ runner.os }}-
28+
- uses: julia-actions/cache@v3
4229
- uses: julia-actions/julia-buildpkg@v1
4330
- uses: julia-actions/julia-runtest@v1
4431
- uses: julia-actions/julia-processcoverage@v1
45-
- uses: codecov/codecov-action@v1
32+
- uses: codecov/codecov-action@v6
4633
with:
4734
file: lcov.info

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name = "IntervalOptimisation"
22
uuid = "c7c68f13-a4a2-5b9a-b424-07d005f8d9d2"
3-
version = "0.5.0"
3+
version = "0.5.1"
44

55
[deps]
66
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
77

88
[compat]
9-
IntervalArithmetic = "0.22"
9+
IntervalArithmetic = "0.22 - 1"
1010
julia = "1.9"
1111

1212
[extras]

0 commit comments

Comments
 (0)