Skip to content

Commit 4240b59

Browse files
committed
Increase julia compat
1 parent 27f9a52 commit 4240b59

4 files changed

Lines changed: 8 additions & 21 deletions

File tree

.github/workflows/CI.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
version:
19-
- '1.6'
19+
- '1.7'
2020
- '1.9'
21+
- '1.10'
2122
- 'nightly'
2223
os:
2324
- ubuntu-latest
@@ -26,21 +27,13 @@ jobs:
2627
arch:
2728
- x64
2829
steps:
29-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v4
3031
- uses: julia-actions/setup-julia@v1
3132
with:
3233
version: ${{ matrix.version }}
3334
arch: ${{ matrix.arch }}
34-
- uses: actions/cache@v1
35-
env:
36-
cache-name: cache-artifacts
37-
with:
38-
path: ~/.julia/artifacts
39-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
40-
restore-keys: |
41-
${{ runner.os }}-test-${{ env.cache-name }}-
42-
${{ runner.os }}-test-
43-
${{ runner.os }}-
35+
show-versioninfo: true
36+
- uses: julia-actions/cache@v1
4437
- uses: julia-actions/julia-buildpkg@v1
4538
- uses: julia-actions/julia-runtest@v1
4639
with:

Project.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
name = "MutatePlainDataArray"
22
uuid = "3b0f367b-da20-4531-811a-c13cc92422b5"
33
authors = ["Haoran Ni <haoranni@terpmail.umd.edu> and contributors"]
4-
version = "0.2.0"
5-
6-
[deps]
7-
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
4+
version = "0.3.0"
85

96
[compat]
10-
Compat = "3.40, 4"
11-
julia = "1.6"
7+
julia = "1.7"
128

139
[extras]
1410
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/MutatePlainDataArray.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ module MutatePlainDataArray
22

33
export aref
44

5-
using Compat
65

76
#---------------------------------------
87
# Common functions.

test/runtests.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
using MutatePlainDataArray
1+
using MutatePlainDataArray: MutatePlainDataArray, aref
22
using Test
3-
using Compat
43

54
struct TAB
65
x::Int

0 commit comments

Comments
 (0)