Skip to content

Commit 453cc28

Browse files
authored
Switch to JuliaIO (#206)
* Switch to JuliaIO * Switch to JuliaIO in deploydocs
1 parent ab8813e commit 453cc28

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# DiskArrays.jl
22

33
![Lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)
4-
[![Stable Docs](https://img.shields.io/badge/docs-stable-blue.svg)](https://meggart.github.io/DiskArrays.jl/stable)
5-
[![Dev Docs](https://img.shields.io/badge/docs-dev-blue.svg)](https://meggart.github.io/DiskArrays.jl/dev)
6-
[![CI](https://github.com/meggart/DiskArrays.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/meggart/DiskArrays.jl/actions/workflows/ci.yml)
7-
[![Codecov](https://codecov.io/gh/meggart/DiskArrays.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/meggart/DiskArrays.jl/tree/main)
4+
[![Stable Docs](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaio.github.io/DiskArrays.jl/stable)
5+
[![Dev Docs](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaio.github.io/DiskArrays.jl/dev)
6+
[![CI](https://github.com/JuliaIO/DiskArrays.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaIO/DiskArrays.jl/actions/workflows/ci.yml)
7+
[![Codecov](https://codecov.io/gh/JuliaIO/DiskArrays.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaIO/DiskArrays.jl/tree/main)
88

99
This package provides a collection of utilities for working with n-dimensional array-like data
1010
structures that do have considerable overhead for single read operations.
@@ -199,7 +199,7 @@ the desired range.
199199
There are arrays that live on disk but which are not split into rectangular chunks, so that the `haschunks` trait returns `Unchunked()`. In order to still enable broadcasting and reductions for these arrays, a chunk size will be estimated in a way that a certain memory limit per chunk is not exceeded. This memory limit defaults to 100MB and can be modified by changing `DiskArrays.default_chunk_size[]`. Then a chunk size is computed based on the element size of the array. However, there are cases where the size of the element type is undefined, e.g. for Strings or variable-length vectors. In these cases one can overload the `DiskArrays.element_size` function for certain container types which returns an approximate element size (in bytes). Otherwise the size of an element will simply be assumed to equal the value stored in `DiskArrays.fallback_element_size` which defaults to 100 bytes.
200200

201201

202-
[ci-img]: https://github.com/meggart/DiskArrays.jl/workflows/CI/badge.svg
203-
[ci-url]: https://github.com/meggart/DiskArrays.jl/actions?query=workflow%3ACI
204-
[codecov-img]: http://codecov.io/github/meggart/DiskArrays.jl/coverage.svg?branch=main
205-
[codecov-url]: (http://codecov.io/github/meggart/DiskArrays.jl?branch=main)
202+
[ci-img]: https://github.com/JuliaIO/DiskArrays.jl/workflows/CI/badge.svg
203+
[ci-url]: https://github.com/JuliaIO/DiskArrays.jl/actions?query=workflow%3ACI
204+
[codecov-img]: http://codecov.io/github/JuliaIO/DiskArrays.jl/coverage.svg?branch=main
205+
[codecov-url]: (http://codecov.io/github/JuliaIO/DiskArrays.jl?branch=main)

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ makedocs(;
1212
# checkdocs = :exports,
1313
)
1414

15-
deploydocs(; repo="github.com/meggart/DiskArrays.jl.git")
15+
deploydocs(; repo="github.com/JuliaIO/DiskArrays.jl.git")

src/DiskArrays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ macro implement_diskarray(t)
4949
end
5050
end
5151

52-
# https://github.com/meggart/DiskArrays.jl/issues/175
52+
# https://github.com/JuliaIO/DiskArrays.jl/issues/175
5353
macro implement_diskarray_skip_zip(t)
5454
# Need to do this for dispatch ambiguity
5555
t = esc(t)

0 commit comments

Comments
 (0)