Skip to content

Commit 1595728

Browse files
authored
Support Julia 1.0 for ArrowTypes package (#223)
1 parent abed17d commit 1595728

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,20 @@ jobs:
1818
- Arrow.jl
1919
- ArrowTypes.jl
2020
version:
21+
- '1.0'
2122
- '1.3'
2223
- '1' # automatically expands to the latest stable 1.x release of Julia
2324
- 'nightly'
2425
os:
2526
- ubuntu-latest
2627
arch:
2728
- x64
29+
exclude:
30+
# Test Arrow.jl/ArrowTypes.jl on their oldest supported Julia versions
31+
- pkg: Arrow.jl
32+
version: '1.0'
33+
- pkg: ArrowTypes.jl
34+
version: '1.3'
2835
steps:
2936
- uses: actions/checkout@v2
3037
- uses: julia-actions/setup-julia@v1
@@ -41,7 +48,9 @@ jobs:
4148
${{ runner.os }}-test-${{ env.cache-name }}-
4249
${{ runner.os }}-test-
4350
${{ runner.os }}-
44-
- uses: julia-actions/julia-buildpkg@v1
51+
- uses: julia-actions/julia-buildpkg@v1.2
52+
with:
53+
project: .github/pkgs/${{ matrix.pkg }}
4554
- uses: julia-actions/julia-runtest@v1
4655
with:
4756
project: .github/pkgs/${{ matrix.pkg }}

src/ArrowTypes/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name = "ArrowTypes"
22
uuid = "31f734f8-188a-4ce0-8406-c8a06bd891cd"
33
authors = ["quinnj <quinn.jacobd@gmail.com>"]
4-
version = "1.1.0"
4+
version = "1.2.0"
55

66
[deps]
77
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
88

99
[compat]
10-
julia = "1.3"
10+
julia = "1.0"
1111

1212
[extras]
1313
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

0 commit comments

Comments
 (0)