File tree 9 files changed +21
-11
lines changed 9 files changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -77,3 +77,5 @@ zarr/version.py
77
77
# doesnotexist
78
78
# test_sync*
79
79
data /*
80
+
81
+ .DS_Store
Original file line number Diff line number Diff line change 17
17
rev : 23.10.0
18
18
hooks :
19
19
- id : black
20
- language_version : python3.8
21
20
- repo : https://github.com/codespell-project/codespell
22
21
rev : v2.2.6
23
22
hooks :
Original file line number Diff line number Diff line change 68
68
69
69
# General information about the project.
70
70
project = "zarr"
71
- copyright = "2022 , Zarr Developers"
71
+ copyright = "2023 , Zarr Developers"
72
72
author = "Zarr Developers"
73
73
74
74
version = zarr .__version__
Original file line number Diff line number Diff line change @@ -18,6 +18,15 @@ Release notes
18
18
Unreleased
19
19
----------
20
20
21
+ Maintenance
22
+ ~~~~~~~~~~~
23
+
24
+ * Initialise some sets in tests with set literals instead of list literals.
25
+ By :user: `Dimitri Papadopoulos Orfanos <DimitriPapadopoulos> ` :issue: `1534 `.
26
+
27
+ * Allow ``black `` code formatter to be run with any Python version.
28
+ By :user: `David Stansby <dstansby> ` :issue: `1549 `
29
+
21
30
.. _release_2.16.1 :
22
31
23
32
2.16.1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Specifications
4
4
==============
5
5
6
6
.. toctree ::
7
- :maxdepth: 3
7
+ :maxdepth: 1
8
8
9
9
spec/v3
10
10
spec/v2
Original file line number Diff line number Diff line change 1
1
.. _spec_v1 :
2
2
3
- Zarr storage specification version 1
3
+ Zarr Storage Specification Version 1
4
4
====================================
5
5
6
6
This document provides a technical specification of the protocol and
Original file line number Diff line number Diff line change 1
1
.. _spec_v2 :
2
2
3
- Zarr storage specification version 2
3
+ Zarr Storage Specification Version 2
4
4
====================================
5
5
6
6
This document provides a technical specification of the protocol and format
Original file line number Diff line number Diff line change 1
1
.. _spec_v3 :
2
2
3
- Zarr storage specification version 3 (under development)
4
- ========================================================
3
+ Zarr Storage Specification Version 3
4
+ =======================================================
5
5
6
- The v3 specification has been migrated to its own website,
6
+ The V3 Specification has been migrated to its website →
7
7
https://zarr-specs.readthedocs.io/.
Original file line number Diff line number Diff line change @@ -1166,9 +1166,9 @@ def test_deep_ndim(self):
1166
1166
if self .version == 2 :
1167
1167
assert set (store .listdir ()) == {".zgroup" , "bar" }
1168
1168
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" }
1172
1172
assert foo ["bar" ]["baz" ][(0 , 0 , 0 )] == 1
1173
1173
1174
1174
def test_not_fsspec (self ):
You can’t perform that action at this time.
0 commit comments