Skip to content

Commit c9c8f5e

Browse files
authored
Merge branch 'main' into zarr3-codecs
2 parents 37700a5 + 1be12d3 commit c9c8f5e

File tree

17 files changed

+73
-52
lines changed

17 files changed

+73
-52
lines changed

.github/workflows/wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
submodules: true
2828

29-
- uses: pypa/cibuildwheel@v2.16.5
29+
- uses: pypa/cibuildwheel@v2.19.2
3030

3131
- uses: actions/upload-artifact@v4
3232
with:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default_language_version:
77
python: python3
88
repos:
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: 'v0.4.10'
10+
rev: 'v0.5.1'
1111
hooks:
1212
- id: ruff
1313
args: ["--fix", "--show-fixes"]

docs/contributing.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ Creating a development environment
9292
To work with the NumCodecs source code, it is recommended to set up a Python virtual
9393
environment and install all NumCodecs dependencies using the same versions as are used by
9494
the core developers and continuous integration services. Assuming you have a Python
95-
3 interpreter already installed, and have also installed the virtualenv package, and
96-
you have cloned the NumCodecs source code and your current working directory is the root of
97-
the repository, you can do something like the following::
95+
3 interpreter already installed matching the ``requires-python`` constraint from
96+
``pyproject.toml``, and you have cloned the NumCodecs source code and your
97+
current working directory is the root of the repository, you can do something
98+
like the following::
9899

99-
$ mkdir -p ~/pyenv/numcodecs-dev
100-
$ virtualenv --no-site-packages --python=/usr/bin/python3.9 ~/pyenv/numcodecs-dev
100+
$ python3 -m venv ~/pyenv/numcodecs-dev
101101
$ source ~/pyenv/numcodecs-dev/bin/activate
102102
$ pip install -e .[docs,test,msgpack,zfpy]
103103

docs/release.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Fix
3131
By :user:`Elliott Sales de Andrade <QuLogic>`, :issue:`487`.
3232
* Fix Upgrade to Zstd 1.5.5 due to potential corruption.
3333
By :user:`Mark Kittisopikul <mkitti>`, :issue:`429`
34+
* Add version constraint(<2.0) for numpy in zfpy.
35+
By :user:`Tom Liang <px39n>`, :issue:`540`.
3436

3537
Maintenance
3638
~~~~~~~~~~~
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"delta_encoding_order": null,
33
"equal_pages_up_to": 262144,
4-
"float_mult_spec": "enabled",
54
"id": "pcodec",
6-
"int_mult_spec": "enabled",
7-
"level": 8
5+
"level": 8,
6+
"mode_spec": "auto"
87
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"delta_encoding_order": null,
33
"equal_pages_up_to": 262144,
4-
"float_mult_spec": "enabled",
54
"id": "pcodec",
6-
"int_mult_spec": "enabled",
7-
"level": 1
5+
"level": 1,
6+
"mode_spec": "auto"
87
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"delta_encoding_order": null,
33
"equal_pages_up_to": 262144,
4-
"float_mult_spec": "enabled",
54
"id": "pcodec",
6-
"int_mult_spec": "enabled",
7-
"level": 5
5+
"level": 5,
6+
"mode_spec": "auto"
87
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"delta_encoding_order": null,
33
"equal_pages_up_to": 262144,
4-
"float_mult_spec": "enabled",
54
"id": "pcodec",
6-
"int_mult_spec": "enabled",
7-
"level": 9
5+
"level": 9,
6+
"mode_spec": "auto"
87
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"delta_encoding_order": null,
33
"equal_pages_up_to": 262144,
4-
"float_mult_spec": "disabled",
54
"id": "pcodec",
6-
"int_mult_spec": "disabled",
7-
"level": 8
5+
"level": 8,
6+
"mode_spec": "classic"
87
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"delta_encoding_order": null,
33
"equal_pages_up_to": 300,
4-
"float_mult_spec": "enabled",
54
"id": "pcodec",
6-
"int_mult_spec": "enabled",
7-
"level": 8
5+
"level": 8,
6+
"mode_spec": "auto"
87
}

0 commit comments

Comments
 (0)