Skip to content

Commit f87ddf9

Browse files
committed
Remove specs pages from docs
1 parent 01b73a7 commit f87ddf9

File tree

5 files changed

+8
-22
lines changed

5 files changed

+8
-22
lines changed

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Zarr-Python
1212
tutorial
1313
guide/index
1414
api/index
15-
spec
1615
release
1716
license
1817
contributing
@@ -27,6 +26,7 @@ Zarr-Python
2726
`Source Repository <https://github.com/zarr-developers/zarr-python>`_ |
2827
`Issue Tracker <https://github.com/zarr-developers/zarr-python/issues>`_ |
2928
`Zulip Chat <https://ossci.zulipchat.com/>`_
29+
`Zarr specifications <https://zarr-specs.readthedocs.io>`_
3030

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

docs/spec/v1.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/spec/v2.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/spec/v3.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

test.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import zarr
2+
3+
store = zarr.DirectoryStore("data")
4+
r = zarr.open_group(store=store)
5+
z = r.full("myArray", 42, shape=(), dtype="i4", compressor=None)
6+
7+
print(z.oindex[...])

0 commit comments

Comments
 (0)