Skip to content

Commit 1fce24d

Browse files
authored
ci: update Jet version to 0.10, use Julia 1.12 (#109)
1 parent af13a5d commit 1fce24d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ jobs:
9292
- uses: actions/checkout@v5
9393
- uses: julia-actions/setup-julia@v2
9494
with:
95-
version: "1.11"
95+
version: "1"
9696
- name: "Install dependencies"
9797
shell: julia --color=yes {0}
9898
run: |
9999
import Pkg
100100
Pkg.activate("juliahub-jet", shared=true)
101-
Pkg.add(name="JET", version="0.9")
101+
Pkg.add(name="JET", version="0.10")
102102
Pkg.develop(path=".")
103103
- name: "JET.test_package(..., mode=:basic) [informational]"
104104
run: julia --color=yes --project=@juliahub-jet test/jet.jl

src/datasets.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function Dataset(d::Dict; expected_project::Union{UUID, Nothing}=nothing)
183183
_get_json(project_json, "project_id", String)
184184
)
185185
if project_json_uuid != expected_project
186-
msg = "Project UUID mismatch in dataset response: $(project_json_uuid), requested $(project)"
186+
msg = "Project UUID mismatch in dataset response: $(project_json_uuid), requested $(expected_project)"
187187
throw(JuliaHubError(msg))
188188
end
189189
is_writable = _get_json(

0 commit comments

Comments
 (0)