From 9bac529aad50765df912372d71d9ef797a31a7b0 Mon Sep 17 00:00:00 2001 From: Ian Weaver Date: Fri, 10 Apr 2026 22:02:41 -0700 Subject: [PATCH 1/4] build: use release version of FileIO.jl --- Project.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Project.toml b/Project.toml index 3ca4184..c57c35b 100644 --- a/Project.toml +++ b/Project.toml @@ -21,10 +21,6 @@ PkgVersion = "eebad327-c553-4316-9ea0-9fa01ccd7688" StridedViews = "4db3bf67-4bd7-4b4e-b153-31dc3fb37143" YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6" -# TODO: Remove after https://github.com/JuliaIO/FileIO.jl/pull/427 -[sources] -FileIO = {url = "https://github.com/JuliaIO/FileIO.jl", rev = "master"} - [compat] AbstractTrees = "0.4.5" ChunkCodecLibBlosc = "0.2.0, 0.3" From 49b2f7e2b7301da790464245f613fd521e7a44d3 Mon Sep 17 00:00:00 2001 From: Ian Weaver Date: Fri, 10 Apr 2026 22:22:56 -0700 Subject: [PATCH 2/4] build: test v1.10 (LTS) --- .github/workflows/CI.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 27ff1dd..55c3b2a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,8 +9,7 @@ jobs: strategy: matrix: version: - # TODO: Put back after https://github.com/JuliaIO/FileIO.jl/pull/427 - #- "min" + - "min" - "1" - "pre" os: From bafdaec4e3a037e7678694a0891117ea369eaef7 Mon Sep 17 00:00:00 2001 From: Ian Weaver Date: Thu, 30 Apr 2026 15:48:02 -0700 Subject: [PATCH 3/4] Trigger CI From 182c45a98b0b1652c57966825b0ed93d259c69be Mon Sep 17 00:00:00 2001 From: Ian Weaver Date: Thu, 30 Apr 2026 16:09:30 -0700 Subject: [PATCH 4/4] fix: remove Julia version dependent printing (i.e., vs ) --- docs/src/intro.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/src/intro.md b/docs/src/intro.md index 8d799b7..57a0132 100644 --- a/docs/src/intro.md +++ b/docs/src/intro.md @@ -218,12 +218,8 @@ intro_compressed.asdf Using `NDArrayWrapper` allows for the wrapped data to be lazily accessed as a strided view. To access the underlying data, use the `[]` (dereference) syntax: ```jldoctest intro -julia> af["data"][] -4-element reshape(reinterpret(Int64, ::StridedViews.StridedView{UInt8, 2, Memory{UInt8}, typeof(identity)}), 4) with eltype Int64: - 1 - 2 - 3 - 4 +julia> af["data"][] == [1, 2, 3, 4] +true ``` ## Tagged objects