8000 Merge branch 'main' into dependabot/pip/numpy-1.26.1 · TomNicholas/zarr-python@a25fae5 · GitHub
[go: up one dir, main page]

Skip to content

Commit a25fae5

Browse files
authored
Merge branch 'main' into dependabot/pip/numpy-1.26.1
2 parents 179e724 + 5954ff9 commit a25fae5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+112
-433
lines changed

.github/workflows/minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Setup Miniconda
18-
uses: conda-incubator/setup-miniconda@v2.2.0
18+
uses: conda-incubator/setup-miniconda@v3.0.1
1919
with:
2020
channels: conda-forge
2121
environment-file: environment.yml

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
fetch-depth: 0
4444
- name: Setup Miniconda
45-
uses: conda-incubator/setup-miniconda@v2.2.0
45+
uses: conda-incubator/setup-miniconda@v3.0.1
4646
with:
4747
channels: conda-forge
4848
python-version: ${{ matrix.python-version }}

.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.8.10
67+
- uses: pypa/gh-action-pypi-publish@v1.8.11
6868
with:
6969
user: __token__
7070
password: ${{ secrets.pypi_password }}

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
24-
- uses: conda-incubator/setup-miniconda@v2.2.0
24+
- uses: conda-incubator/setup-miniconda@v3.0.1
2525
with:
2626
auto-update-conda: true
2727
python-version: ${{ matrix.python-version }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ coverage.xml
5151

5252
# Sphinx documentation
5353
docs/_build/
54+
docs/_autoapi/
5455

5556
# PyBuilder
5657
target/

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
# Respect `exclude` and `extend-exclude` settings.
1515
args: ["--force-exclude"]
1616
- repo: https://github.com/psf/black
17-
rev: 22.12.0
17+
rev: 23.10.1
1818
hooks:
1919
- id: black
2020
- repo: https://github.com/codespell-project/codespell

.readthedocs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ build:
77

88
sphinx:
99
configuration: docs/conf.py
10+
fail_on_warning: true
1011

1112
python:
1213
install:
1314
- method: pip
1415
path: .
1516
extra_requirements:
1617
- docs
18+
19+
formats: all

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

bench/compress_normal.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from zarr import blosc
99

1010
if __name__ == "__main__":
11-
1211
sys.path.insert(0, "..")
1312

1413
# setup

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33

44
# You can set these variables from the command line.
5-
SPHINXOPTS =
5+
SPHINXOPTS = -W --keep-going
66
SPHINXBUILD = sphinx-build
77
PAPER =
88
BUILDDIR = _build

0 commit comments

Comments
 (0)
0