File tree Expand file tree Collapse file tree 8 files changed +15
-10
lines changed Expand file tree Collapse file tree 8 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -77,3 +77,5 @@ zarr/version.py
7777# doesnotexist
7878# test_sync*
7979data /*
80+
81+ .DS_Store
Original file line number Diff line number Diff line change 6868
6969# General information about the project.
7070project = "zarr"
71- copyright = "2022 , Zarr Developers"
71+ copyright = "2023 , Zarr Developers"
7272author = "Zarr Developers"
7373
7474version = zarr .__version__
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ Maintenance
2424* Preserve ``dimension_separator `` when resizing arrays.
2525 By :user: `Ziwen Liu <ziw-liu> ` :issue: `1533 `.
2626
27+ * Initialise some sets in tests with set literals instead of list literals.
28+ By :user: `Dimitri Papadopoulos Orfanos <DimitriPapadopoulos> ` :issue: `1534 `.
29+
2730* Allow ``black `` code formatter to be run with any Python version.
2831 By :user: `David Stansby <dstansby> ` :issue: `1549 `.
2932
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Specifications
44==============
55
66.. toctree ::
7- :maxdepth: 3
7+ :maxdepth: 1
88
99 spec/v3
1010 spec/v2
Original file line number Diff line number Diff line change 11.. _spec_v1 :
22
3- Zarr storage specification version 1
3+ Zarr Storage Specification Version 1
44====================================
55
66This document provides a technical specification of the protocol and
Original file line number Diff line number Diff line change 11.. _spec_v2 :
22
3- Zarr storage specification version 2
3+ Zarr Storage Specification Version 2
44====================================
55
66This document provides a technical specification of the protocol and format
Original file line number Diff line number Diff line change 11.. _spec_v3 :
22
3- Zarr storage specification version 3 (under development)
4- ========================================================
3+ Zarr Storage Specification Version 3
4+ =======================================================
55
6- The v3 specification has been migrated to its own website,
6+ The V3 Specification has been migrated to its website →
77https://zarr-specs.readthedocs.io/.
Original file line number Diff line number Diff line change @@ -1166,9 +1166,9 @@ def test_deep_ndim(self):
11661166 if self .version == 2 :
11671167 assert set (store .listdir ()) == {".zgroup" , "bar" }
11681168 else :
1169- assert set (store .listdir ()) == set ([ "data" , "meta" , "zarr.json" ])
1170- assert set (store .listdir ("meta/root/" + path )) == set ([ "bar" , "bar.group.json" ])
1171- assert set (store .listdir ("data/root/" + path )) == set ([ "bar" ])
1169+ assert set (store .listdir ()) == { "data" , "meta" , "zarr.json" }
1170+ assert set (store .listdir ("meta/root/" + path )) == { "bar" , "bar.group.json" }
1171+ assert set (store .listdir ("data/root/" + path )) == { "bar" }
11721172 assert foo ["bar" ]["baz" ][(0 , 0 , 0 )] == 1
11731173
11741174 def test_not_fsspec (self ):
You can’t perform that action at this time.
0 commit comments