Skip to content

Commit 0da7105

Browse files
committed
Merge branch 'main' into creation-from-other-zarr
# Conflicts: # src/zarr/api/asynchronous.py # src/zarr/api/synchronous.py # src/zarr/core/array.py # tests/test_indexing.py
2 parents 30aae3a + 5a36e17 commit 0da7105

40 files changed

+1125
-575
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@ jobs:
102102
- name: Run Tests
103103
run: |
104104
hatch env run --env ${{ matrix.dependency-set }} run
105+
- name: Upload coverage
106+
uses: codecov/codecov-action@v5
107+
with:
108+
token: ${{ secrets.CODECOV_TOKEN }}
109+
verbose: true # optional (default = false)
105110

106111
doctests:
107112
name: doctests

changes/2758.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2778.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2781.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2785.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2801.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2804.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2807.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2811.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/developers/contributing.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,27 @@ during development at `http://0.0.0.0:8000/ <http://0.0.0.0:8000/>`_. This can b
230230

231231
$ hatch --env docs run serve
232232

233+
.. _changelog:
234+
235+
Changelog
236+
~~~~~~~~~
237+
238+
zarr-python uses `towncrier`_ to manage release notes. Most pull requests should
239+
include at least one news fragment describing the changes. To add a release
240+
note, you'll need the GitHub issue or pull request number and the type of your
241+
change (``feature``, ``bugfix``, ``doc``, ``removal``, ``misc``). With that, run
242+
```towncrier create``` with your development environment, which will prompt you
243+
for the issue number, change type, and the news text::
244+
245+
towncrier create
246+
247+
Alternatively, you can manually create the files in the ``changes`` directory
248+
using the naming convention ``{issue-number}.{change-type}.rst``.
249+
250+
See the `towncrier`_ docs for more.
251+
252+
.. _towncrier: https://towncrier.readthedocs.io/en/stable/tutorial.html
253+
233254
Development best practices, policies and procedures
234255
---------------------------------------------------
235256

0 commit comments

Comments
 (0)