Skip to content

Commit 9c7cdce

Browse files
authored
Fix broken CI (#27)
* Convert set to vector before broadcast * Increment patch number * Remove nightly from test suite
1 parent e7a1de2 commit 9c7cdce

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,11 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
julia-version: ["1", "1.8", "nightly"]
18-
os: [ubuntu-latest]
17+
julia-version: ["1"]
18+
os: [ubuntu-latest, macOS-latest, windows-latest]
1919
include:
20-
- julia-version: "1"
21-
os: windows-latest
22-
- julia-version: "1"
23-
os: macOS-latest
20+
- julia-version: "1.8"
21+
os: ubuntu-latest
2422
steps:
2523
- uses: actions/checkout@v4
2624
- uses: julia-actions/setup-julia@v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ArviZPythonPlots"
22
uuid = "4a6e88f0-2c8e-11ee-0601-e94153f0eada"
33
authors = ["Seth Axen <seth@sethaxen.com>"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
ArviZ = "131c737c-5715-5e2e-ad31-c244f01c1dc7"

test/test_xarray.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ using Test
1919
@test o isa Py
2020
@test pyisinstance(o, ArviZPythonPlots.xarray.Dataset)
2121

22-
@test issetequal(Symbol.(o.coords.keys()), (:chain, :draw, :shared, :ydim1))
22+
@test issetequal(
23+
Symbol.(collect(o.coords.keys())), (:chain, :draw, :shared, :ydim1)
24+
)
2325
for (dim, coord) in o.coords.items()
2426
@test pyeq(
2527
Bool, pylist(coord.values), pylist(DimensionalData.index(ds, Symbol(dim)))

0 commit comments

Comments
 (0)