Skip to content

Commit 29613aa

Browse files
authored
chore: Release Prep v2.4.7 (#107)
* Restrict zarr version upper bound, update bioformats version * Bump version: 2.4.6 → 2.4.7-dev0 * Bump version: 2.4.7-dev0 → 2.4.7
1 parent e2d1d16 commit 29613aa

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# **B**io**F**ormats **I**nput/**O**utput utility (bfio 2.4.6)
1+
# **B**io**F**ormats **I**nput/**O**utput utility (bfio 2.4.7)
22

33
[![Documentation Status](https://readthedocs.org/projects/bfio/badge/?version=latest)](https://bfio.readthedocs.io/en/latest/?badge=latest)
44
[![PyPI](https://img.shields.io/pypi/v/bfio)](https://pypi.org/project/bfio/)
@@ -50,15 +50,15 @@ be installed using pip:
5050

5151
## Docker
5252

53-
### polusai/bfio:2.4.6
53+
### polusai/bfio:2.4.7
5454

5555
Ubuntu based container with bfio and all dependencies (including Java).
5656

57-
### polusai/bfio:2.4.6-imagej
57+
### polusai/bfio:2.4.7-imagej
5858

5959
Same as above, except comes with ImageJ and PyImageJ.
6060

61-
### polusai/bfio:2.4.6-tensorflow
61+
### polusai/bfio:2.4.7-tensorflow
6262

6363
Tensorflow container with bfio installed.
6464

docker/m2_repo.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ index 954d682..cb88332 100644
55
@@ -40,6 +40,8 @@ try:
66

77
global JAR_VERSION
8-
scyjava.config.endpoints.append("ome:formats-gpl:8.0.0")
8+
scyjava.config.endpoints.append("ome:formats-gpl:8.0.1")
99
+ scyjava.config.set_m2_repo("/etc/m2/")
1010
+ scyjava.config.set_cache_dir("/etc/m2/jgo_cache")
1111
scyjava.start_jvm()

docs/source/Examples/Converter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ are available in ``bfio``.
1818
Tiled tiff is the preferred file format for reading/writing arbitrarily sized
1919
images.
2020
2. ``backend="bioformats"`` can be used to read any
21-
`any format supported by Bio-Formats <https://docs.openmicroscopy.org/bio-formats/8.0.0/supported-formats.html>`_.
21+
`any format supported by Bio-Formats <https://docs.openmicroscopy.org/bio-formats/8.0.1/supported-formats.html>`_.
2222
The BioWriter with java backend will only save images as OME tiled tiff.
2323
3. ``backend="zarr"`` can be used to read/write a subset of Zarr files following
2424
the `OME Zarr spec <https://ngff.openmicroscopy.org/latest/>`_.

docs/source/Installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Here are some info on installing Maven on various OS (`Windows <https://phoenixn
2626

2727

2828
NOTE: ``Bio-Formats`` is licensed under GPL, while ``bfio`` is licensed under MIT. This may have consequences when packaging any software that uses
29-
``bfio`` as a dependency. During the first invocation of ``bfio``, ``scyjava`` will try to download ``Bio-Formats`` package from the Maven repository. The current version of ``bfio`` uses ``Bio-Formats`` v8.0.0 .
29+
``bfio`` as a dependency. During the first invocation of ``bfio``, ``scyjava`` will try to download ``Bio-Formats`` package from the Maven repository. The current version of ``bfio`` uses ``Bio-Formats`` v8.0.1 .

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires = [
77
"imagecodecs>=2021.2.26",
88
"numpy",
99
"ome-types>=0.4.2",
10-
"zarr>=2.6.1",
10+
"zarr>=2.6.1,<3",
1111
"scyjava",
1212
"jpype1",
1313
"tifffile>=2022.8.12",
@@ -23,7 +23,7 @@ dependencies = [
2323
"imagecodecs>=2021.2.26",
2424
"numpy",
2525
"ome-types>=0.4.2",
26-
"zarr>=2.6.1",
26+
"zarr>=2.6.1,<3",
2727
"scyjava",
2828
"jpype1",
2929
"tifffile>=2022.8.12",
@@ -87,7 +87,7 @@ namespaces = false
8787

8888

8989
[tool.bumpversion]
90-
current_version = "2.4.6"
90+
current_version = "2.4.7"
9191
commit = true
9292
tag = true
9393
commit_args = "--no-verify"

requirements/requirements-base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bfio==2.4.6
1+
bfio==2.4.7

src/bfio/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.6
1+
2.4.7

src/bfio/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def start() -> str:
3939
"""
4040

4141
global JAR_VERSION
42-
scyjava.config.endpoints.append("ome:formats-gpl:8.0.0")
42+
scyjava.config.endpoints.append("ome:formats-gpl:8.0.1")
4343
scyjava.start_jvm()
4444
import loci
4545

0 commit comments

Comments
 (0)