Skip to content

Commit

Permalink
- Static __all__ for pyinstaller compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wim Pomp committed Dec 7, 2023
1 parent cbeca59 commit 735523a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions ndbioimage/readers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
from pathlib import Path

__all__ = [file.stem for file in Path(__file__).parent.iterdir()
if file.suffix == ".py" and not file == Path(__file__) and not file.stem.startswith('.')]
__all__ = 'bfread', 'cziread', 'fijiread', 'ndread', 'seqread', 'tifread'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ndbioimage"
version = "2023.12.1"
version = "2023.12.2"
description = "Bio image reading, metadata and some affine registration."
authors = ["W. Pomp <w.pomp@nki.nl>"]
license = "GPLv3"
Expand Down

0 comments on commit 735523a

Please sign in to comment.