Skip to content

Commit

Permalink
Remove specs pages from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Dec 13, 2024
1 parent 01b73a7 commit 606e1d7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 33 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Zarr-Python
tutorial
guide/index
api/index
spec
release
license
contributing
Expand All @@ -27,6 +26,7 @@ Zarr-Python
`Source Repository <https://github.com/zarr-developers/zarr-python>`_ |
`Issue Tracker <https://github.com/zarr-developers/zarr-python/issues>`_ |
`Zulip Chat <https://ossci.zulipchat.com/>`_
`Zarr specifications <https://zarr-specs.readthedocs.io>`_

Zarr is a file storage format for chunked, compressed, N-dimensional arrays based on an open-source specification.

Expand Down
11 changes: 0 additions & 11 deletions docs/spec.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/spec/v1.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/spec/v2.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/spec/v3.rst

This file was deleted.

7 changes: 7 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import zarr

store = zarr.DirectoryStore("data")
r = zarr.open_group(store=store)
z = r.full("myArray", 42, shape=(), dtype="i4", compressor=None)

print(z.oindex[...])

0 comments on commit 606e1d7

Please sign in to comment.