Skip to content

Commit 99b04b6

Browse files
committed
revert to upstream main
1 parent 923fb48 commit 99b04b6

26 files changed

+458
-1384
lines changed

.github/workflows/needs_release_notes.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55

66
jobs:
77
triage:
8-
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} && ${{ github.event.pull_request.user.login != 'pre-commit-ci[bot]' }}
98
runs-on: ubuntu-latest
109
steps:
1110
- uses: actions/labeler@main

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
name: releases
6666
path: dist
67-
- uses: pypa/gh-action-pypi-publish@v1.6.4
67+
- uses: pypa/gh-action-pypi-publish@v1
6868
with:
6969
user: __token__
7070
password: ${{ secrets.pypi_password }}

docs/release.rst

Lines changed: 0 additions & 148 deletions
Original file line numberDiff line numberDiff line change
@@ -14,88 +14,11 @@ Unreleased
1414
# .. warning::
1515
# Pre-release! Use :command:`pip install --pre zarr` to evaluate this release.
1616
17-
* Improve Zarr V3 support, adding partial store read/write and storage transformers.
18-
Add two features of the [v3 spec](https://zarr-specs.readthedocs.io/en/latest/core/v3.0.html):
19-
* storage transformers
20-
* `get_partial_values` and `set_partial_values`
21-
By :user:`Jonathan Striebel <jstriebel>`; :issue:`1096`.
22-
23-
.. _release_2.13.6:
24-
25-
2.13.6
26-
------
27-
28-
Maintenance
29-
~~~~~~~~~~~
30-
31-
* Bump gh-action-pypi-publish to 1.6.4.
32-
By :user:`Josh Moore <joshmoore>` :issue:`1320`.
33-
34-
.. _release_2.13.5:
35-
36-
2.13.5
37-
------
38-
39-
Bug fixes
40-
~~~~~~~~~
41-
42-
* Ensure ``zarr.create`` uses writeable mode to fix issue with :issue:`1304`.
43-
By :user:`James Bourbeau <jrbourbeau>` :issue:`1309`.
44-
45-
.. _release_2.13.4:
46-
47-
2.13.4
48-
------
49-
50-
Appreciation
51-
~~~~~~~~~~~~~
52-
53-
Special thanks to Outreachy participants for contributing to most of the
54-
maintenance PRs. Please read the blog post summarising the contribution phase
55-
and welcoming new Outreachy interns:
56-
https://zarr.dev/blog/welcoming-outreachy-2022-interns/
57-
58-
59-
Enhancements
60-
~~~~~~~~~~~~
61-
62-
* Handle fsspec.FSMap using FSStore store.
63-
By :user:`Rafal Wojdyla <ravwojdyla>` :issue:`1304`.
64-
65-
Bug fixes
66-
~~~~~~~~~
67-
68-
* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` methods with V3 stores.
69-
By :user:`Ryan Abernathey <rabernat>` :issue:`1228`.
70-
71-
* Remove unnecessary calling of `contains_array` for key that ended in `.array.json`.
72-
By :user:`Joe Hamman <jhamman>` :issue:`1149`.
73-
7417
* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()``
7518
methods with V3 stores.
7619
By :user:`Ryan Abernathey <rabernat>` :issue:`1228`.
7720

78-
<<<<<<< HEAD
79-
* Add support for setting user-defined attributes at array / group creation time.
80-
By :user: `Davis Bennett <d-v-b>` :issue:`538`.
81-
8221
.. _release_2.13.2:
83-
=======
84-
Documentation
85-
~~~~~~~~~~~~~
86-
87-
* Fix minor indexing errors in tutorial and specification examples of documentation.
88-
By :user:`Kola Babalola <sprynt001>` :issue:`1277`.
89-
90-
* Add `requirements_rtfd.txt` in `contributing.rst`.
91-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1243`.
92-
93-
* Add documentation for find/findall using visit.
94-
By :user:`Weddy Gikunda <caviere>` :issue:`1241`.
95-
96-
* Refresh of the main landing page.
97-
By :user:`Josh Moore <joshmoore>` :issue:`1173`.
98-
>>>>>>> 385b5d3635618e086eb4752f81c652379751a5ad
9922

10023
Maintenance
10124
~~~~~~~~~~~
@@ -130,77 +53,6 @@ Maintenance
13053
* Delete unused files.
13154
By :user:`John Kirkham <jakirkham>` :issue:`1251`.
13255

133-
* Skip labeller for bot PRs.
134-
By :user:`Saransh Chopra <Saransh-cpp>` :issue:`1271`.
135-
136-
* Restore Flake8 configuration.
137-
By :user:`John Kirkham <jakirkham>` :issue:`1249`.
138-
139-
* Add missing newline at EOF.
140-
By :user:`Dimitri Papadopoulos` :issue:`1253`.
141-
142-
* Add `license_files` to `pyproject.toml`.
143-
By :user:`John Kirkham <jakirkham>` :issue:`1247`.
144-
145-
* Adding `pyupgrade` suggestions.
146-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1225`.
147-
148-
* Fixed some linting errors.
149-
By :user:`Weddy Gikunda <caviere>` :issue:`1226`.
150-
151-
* Added the link to main website in readthedocs sidebar.
152-
By :user:`Stephanie_nkwatoh <steph237>` :issue:`1216`.
153-
154-
* Remove redundant wheel dependency in `pyproject.toml`.
155-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1233`.
156-
157-
* Turned on `isloated_build` in `tox.ini` file.
158-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1210`.
159-
160-
* Fixed `flake8` alert and avoid duplication of `Zarr Developers`.
161-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1203`.
162-
163-
* Bump to NumPy 1.20+ in `environment.yml`.
164-
By :user:`John Kirkham <jakirkham>` :issue:`1201`.
165-
166-
* Bump to NumPy 1.20 in `pyproject.toml`.
167-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1192`.
168-
169-
* Remove LGTM (`.lgtm.yml`) configuration file.
170-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1191`.
171-
172-
* Codespell will skip `fixture` in pre-commit.
173-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1197`.
174-
175-
* Add msgpack in `requirements_rtfd.txt`.
176-
By :user:`Emmanuel Bolarinwa <GbotemiB>` :issue:`1188`.
177-
178-
* Added license to docs fixed a typo from `_spec_v2` to `_spec_v3`.
179-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1182`.
180-
181-
* Fixed installation link in `README.md`.
182-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1177`.
183-
184-
* Fixed typos in `installation.rst` and `release.rst`.
185-
By :user:`Chizoba Nweke <zobbs-git>` :issue:`1178`.
186-
187-
* Set `docs/conf.py` language to `en`.
188-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1174`.
189-
190-
* Added `installation.rst` to the docs.
191-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1170`.
192-
193-
* Adjustment of year to `2015-2018` to `2015-2022` in the docs.
194-
By :user:`Emmanuel Bolarinwa <GbotemiB>` :issue:`1165`.
195-
196-
* Updated `Forking the repository` section in `contributing.rst`.
197-
By :user:`AWA BRANDON AWA <DON-BRAN>` :issue:`1171`.
198-
199-
* Updated GitHub actions.
200-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1134`.
201-
202-
* Uopdate web links: `http:// → https://`.
203-
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1313`.
20456

20557
.. _release_2.13.3:
20658

docs/spec/v1.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ are converted to strings and concatenated with the period character
144144
('.') separating each index. For example, given an array with shape
145145
(10000, 10000) and chunk shape (1000, 1000) there will be 100 chunks
146146
laid out in a 10 by 10 grid. The chunk with indices (0, 0) provides
147-
data for rows 0-999 and columns 0-999 and is stored under the key
148-
'0.0'; the chunk with indices (2, 4) provides data for rows 2000-2999
149-
and columns 4000-4999 and is stored under the key '2.4'; etc.
147+
data for rows 0-1000 and columns 0-1000 and is stored under the key
148+
'0.0'; the chunk with indices (2, 4) provides data for rows 2000-3000
149+
and columns 4000-5000 and is stored under the key '2.4'; etc.
150150

151151
There is no need for all chunks to be present within an array
152152
store. If a chunk is not present then it is considered to be in an

docs/spec/v2.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ To form a string key for a chunk, the indices are converted to strings and
216216
concatenated with the period character (".") separating each index. For
217217
example, given an array with shape (10000, 10000) and chunk shape (1000, 1000)
218218
there will be 100 chunks laid out in a 10 by 10 grid. The chunk with indices
219-
(0, 0) provides data for rows 0-999 and columns 0-999 and is stored under the
220-
key "0.0"; the chunk with indices (2, 4) provides data for rows 2000-2999 and
221-
columns 4000-4999 and is stored under the key "2.4"; etc.
219+
(0, 0) provides data for rows 0-1000 and columns 0-1000 and is stored under the
220+
key "0.0"; the chunk with indices (2, 4) provides data for rows 2000-3000 and
221+
columns 4000-5000 and is stored under the key "2.4"; etc.
222222

223223
There is no need for all chunks to be present within an array store. If a chunk
224224
is not present then it is considered to be in an uninitialized state. An

docs/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,9 +525,9 @@ When the indexing arrays have different shapes, they are broadcast together.
525525
That is, the following two calls are equivalent::
526526

527527
>>> z[1, [1, 3]]
528-
array([6, 8])
528+
array([5, 7])
529529
>>> z[[1, 1], [1, 3]]
530-
array([6, 8])
530+
array([5, 7])
531531

532532
Indexing with a mask array
533533
~~~~~~~~~~~~~~~~~~~~~~~~~~

notebooks/dask_copy.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"text/html": [
3434
"\n",
3535
" <div class=\"bk-root\">\n",
36-
" <a href=\"https://bokeh.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
36+
" <a href=\"http://bokeh.pydata.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
3737
" <span id=\"d4821cb3-378c-411d-a941-d0708c0c532b\">Loading BokehJS ...</span>\n",
3838
" </div>"
3939
]

notebooks/dask_count_alleles.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"text/html": [
2727
"\n",
2828
" <div class=\"bk-root\">\n",
29-
" <a href=\"https://bokeh.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
29+
" <a href=\"http://bokeh.pydata.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
3030
" <span id=\"b153ad5f-436a-4afb-945c-87790add89c8\">Loading BokehJS ...</span>\n",
3131
" </div>"
3232
]

requirements_dev_minimal.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# library requirements
22
asciitree==0.3.3
33
fasteners==0.18
4-
numcodecs==0.11.0
4+
numcodecs==0.10.2
55
msgpack-python==0.5.6
6-
setuptools-scm==7.1.0
6+
setuptools-scm==7.0.5
77
# test requirements
8-
pytest==7.2.1
8+
pytest==7.2.0

requirements_dev_numpy.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Break this out into a separate file to allow testing against
22
# different versions of numpy. This file should pin to the latest
33
# numpy version.
4-
numpy==1.24.1
4+
numpy==1.23.5

0 commit comments

Comments
 (0)