-
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'support/v2' into recursive-getsize
- Loading branch information
Showing
14 changed files
with
49 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ jobs: | |
with: | ||
name: releases | ||
path: dist | ||
- uses: pypa/[email protected].1 | ||
- uses: pypa/[email protected].3 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,19 +7,15 @@ build-backend = "setuptools.build_meta" | |
name = "zarr" | ||
description = "An implementation of chunked, compressed, N-dimensional arrays for Python" | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
maintainers = [ | ||
{ name = "Alistair Miles", email = "[email protected]" } | ||
] | ||
requires-python = ">=3.10" | ||
maintainers = [{ name = "Alistair Miles", email = "[email protected]" }] | ||
requires-python = ">=3.11" | ||
dependencies = [ | ||
'asciitree', | ||
'numpy>=1.24', | ||
'fasteners; sys_platform != "emscripten"', | ||
'numcodecs>=0.10.0', | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
dynamic = ["version"] | ||
classifiers = [ | ||
'Development Status :: 6 - Mature', | ||
'Intended Audience :: Developers', | ||
|
@@ -30,18 +26,14 @@ classifiers = [ | |
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Programming Language :: Python :: 3.13', | ||
] | ||
license = { text = "MIT" } | ||
|
||
[project.optional-dependencies] | ||
jupyter = [ | ||
'notebook', | ||
'ipytree>=0.2.2', | ||
'ipywidgets>=8.0.0', | ||
] | ||
jupyter = ['notebook', 'ipytree>=0.2.2', 'ipywidgets>=8.0.0'] | ||
docs = [ | ||
'sphinx', | ||
'sphinx-automodapi', | ||
|
@@ -64,14 +56,11 @@ Homepage = "https://github.com/zarr-developers/zarr-python" | |
exclude_lines = [ | ||
"pragma: no cover", | ||
"pragma: ${PY_MAJOR_VERSION} no cover", | ||
'.*\.\.\.' # Ignore "..." lines | ||
'.*\.\.\.', # Ignore "..." lines | ||
] | ||
|
||
[tool.coverage.run] | ||
omit = [ | ||
"zarr/meta_v1.py", | ||
"bench/compress_normal.py", | ||
] | ||
omit = ["zarr/meta_v1.py", "bench/compress_normal.py"] | ||
|
||
[tool.setuptools] | ||
packages = ["zarr", "zarr._storage", "zarr.tests"] | ||
|
@@ -100,14 +89,12 @@ exclude = [ | |
"build", | ||
"dist", | ||
"venv", | ||
"docs" | ||
"docs", | ||
] | ||
|
||
[tool.ruff.lint] | ||
extend-select = [ | ||
"B" | ||
] | ||
ignore = ["B905"] # zip-without-explicit-strict | ||
extend-select = ["B"] | ||
ignore = ["B905"] # zip-without-explicit-strict | ||
|
||
[tool.black] | ||
line-length = 100 | ||
|
@@ -136,19 +123,17 @@ doctest_optionflags = [ | |
"ELLIPSIS", | ||
"IGNORE_EXCEPTION_DETAIL", | ||
] | ||
addopts = [ | ||
"--durations=10", | ||
] | ||
addopts = ["--durations=10"] | ||
filterwarnings = [ | ||
"error:::zarr.*", | ||
"ignore:PY_SSIZE_T_CLEAN will be required.*:DeprecationWarning", | ||
"ignore:The loop argument is deprecated since Python 3.8.*:DeprecationWarning", | ||
"ignore:The .* is deprecated and will be removed in a Zarr-Python version 3*:FutureWarning", | ||
"ignore:The experimental Zarr V3 implementation in this version .*:FutureWarning", | ||
] | ||
doctest_subpackage_requires =[ | ||
doctest_subpackage_requires = [ | ||
"zarr/core.py = numpy>=2", | ||
"zarr/creation.py = numpy>=2" | ||
"zarr/creation.py = numpy>=2", | ||
] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Break this out into a separate file to allow testing against | ||
# different versions of numpy. This file should pin to the latest | ||
# numpy version. | ||
numpy==2.1.1 | ||
numpy==2.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters