Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to bioformats 8.0.0 #102

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/m2_repo.patch
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ index 954d682..cb88332 100644
@@ -40,6 +40,8 @@ try:

global JAR_VERSION
scyjava.config.endpoints.append("ome:formats-gpl:7.3.0")
scyjava.config.endpoints.append("ome:formats-gpl:8.0.0")
+ scyjava.config.set_m2_repo("/etc/m2/")
+ scyjava.config.set_cache_dir("/etc/m2/jgo_cache")
scyjava.start_jvm()
Expand Down
2 changes: 1 addition & 1 deletion docs/source/Examples/Converter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ are available in ``bfio``.
Tiled tiff is the preferred file format for reading/writing arbitrarily sized
images.
2. ``backend="bioformats"`` can be used to read any
`any format supported by Bio-Formats <https://docs.openmicroscopy.org/bio-formats/7.3.0/supported-formats.html>`_.
`any format supported by Bio-Formats <https://docs.openmicroscopy.org/bio-formats/8.0.0/supported-formats.html>`_.
The BioWriter with java backend will only save images as OME tiled tiff.
3. ``backend="zarr"`` can be used to read/write a subset of Zarr files following
the `OME Zarr spec <https://ngff.openmicroscopy.org/latest/>`_.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/Installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Here are some info on installing Maven on various OS (`Windows <https://phoenixn


NOTE: ``Bio-Formats`` is licensed under GPL, while ``bfio`` is licensed under MIT. This may have consequences when packaging any software that uses
``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`` v7.3.0 .
``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 .
2 changes: 1 addition & 1 deletion src/bfio/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def start() -> str:
"""

global JAR_VERSION
scyjava.config.endpoints.append("ome:formats-gpl:7.3.0")
scyjava.config.endpoints.append("ome:formats-gpl:8.0.0")
scyjava.start_jvm()
import loci

Expand Down
Loading