Skip to content

Commit

Permalink
Merge pull request #243 from zarr-developers/release-2.2.0-prep
Browse files Browse the repository at this point in the history
Release 2.2.0
  • Loading branch information
jakirkham authored Mar 7, 2018
2 parents 56df929 + d329cee commit d94256d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 20 deletions.
13 changes: 2 additions & 11 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,8 @@ Release notes

.. _release_2.2.0:

2.2.0 (release candidate)
-------------------------

Version 2.2.0 is currently at the release candidate stage. To install the latest release
candidate version using pip::

$ pip install --pre zarr

Alternatively, to install the latest release candidate using conda::

$ conda install -c conda-forge/label/rc zarr
2.2.0
-----

Enhancements
~~~~~~~~~~~~
Expand Down
16 changes: 8 additions & 8 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ property. E.g.::
Compressor : Blosc(cname='lz4', clevel=5, shuffle=SHUFFLE, blocksize=0)
Store type : zarr.storage.DictStore
No. bytes : 8000000 (7.6M)
No. bytes stored : 33460 (32.7K)
Storage ratio : 239.1
No. bytes stored : 33240 (32.5K)
Storage ratio : 240.7
Chunks initialized : 10/10

>>> baz.info
Expand All @@ -409,8 +409,8 @@ property. E.g.::
Compressor : Blosc(cname='lz4', clevel=5, shuffle=SHUFFLE, blocksize=0)
Store type : zarr.storage.DictStore
No. bytes : 4000000 (3.8M)
No. bytes stored : 20443 (20.0K)
Storage ratio : 195.7
No. bytes stored : 23943 (23.4K)
Storage ratio : 167.1
Chunks initialized : 100/100

Groups also have the :func:`zarr.hierarchy.Group.tree` method, e.g.::
Expand Down Expand Up @@ -1143,8 +1143,8 @@ ratios, depending on the correlation structure within the data. E.g.::
Compressor : Blosc(cname='lz4', clevel=5, shuffle=SHUFFLE, blocksize=0)
Store type : builtins.dict
No. bytes : 400000000 (381.5M)
No. bytes stored : 10502688 (10.0M)
Storage ratio : 38.1
No. bytes stored : 6696010 (6.4M)
Storage ratio : 59.7
Chunks initialized : 100/100
>>> f = zarr.array(a, chunks=(1000, 1000), order='F')
>>> f.info
Expand All @@ -1157,8 +1157,8 @@ ratios, depending on the correlation structure within the data. E.g.::
Compressor : Blosc(cname='lz4', clevel=5, shuffle=SHUFFLE, blocksize=0)
Store type : builtins.dict
No. bytes : 400000000 (381.5M)
No. bytes stored : 5530511 (5.3M)
Storage ratio : 72.3
No. bytes stored : 4684636 (4.5M)
Storage ratio : 85.4
Chunks initialized : 100/100

In the above example, Fortran order gives a better compression ratio. This is an
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ idna==2.6
mccabe==0.6.1
monotonic==1.3
msgpack-python==0.4.8
numcodecs==0.5.3
numcodecs==0.5.4
packaging==16.8
pkginfo==1.4.1
pluggy==0.5.2
Expand Down

0 comments on commit d94256d

Please sign in to comment.