diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 13b3aa6..e921d99 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: diff --git a/Project.toml b/Project.toml index 9efa2a6..2d83cf1 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" 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