Skip to content
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ conda install -c conda-forge bioimage-cpp
```

Please refer to [the documentation](https://computational-cell-analytics.github.io/bioimage-cpp/) for details.

**Disclaimer:** The functionality of this library was implemented mainly by coding agents (Claude Code and OpenAI Codex).
We have made our best efforts to test the implementations thoroughly and are already using it heavily in our day-to-day research and have integrated with other software tools.
Nevertheless, it may contain bugs or unintended behavior (as most software does).
If you find such a problem, please [open an issue on github](https://github.com/computational-cell-analytics/bioimage-cpp/issues).
We are committed to improving and mainting this software.
16 changes: 12 additions & 4 deletions src/bioimage_cpp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@

The goal is to provide the functionality within a single library and via pip as well as conda.

**Warning:** This library was written mainly by coding agents (claude code and openai codex).
It is not very thoroughly tested and may contain bugs.
**Disclaimer:** The functionality of this library was implemented mainly by coding agents (Claude Code, OpenAI Codex).
We make our best efforts to test the implementations thoroughly
and are already using it heavily in our day-to-day research
and have integrated it with other software tools.
Nevertheless, it may contain bugs or unintended behavior (as most software does).
If you find such a problem,
please [open an issue on github](https://github.com/computational-cell-analytics/bioimage-cpp/issues).
We are committed to improving and mainting this software.

## Installation

Expand All @@ -28,7 +34,8 @@
conda install -c conda-forge bioimage-cpp
```

Additional dependencies for tests / data downloads can be installed via `pip install bioimage-cpp[test]` / `pip install bioimage-cpp[data]` respectively.
Additional dependencies for tests / data downloads
can be installed via `pip install bioimage-cpp[test]` / `pip install bioimage-cpp[data]` respectively.

You can also install this library from source. The build requires C++20 (GCC >= 10 or Clang >= 13).

Expand All @@ -39,7 +46,8 @@
pip install -e .
```

On systems with an older compiler (e.g. many HPC clusters ship GCC 8), install a modern one from conda-forge alongside the build dependencies, and point `CC`/`CXX` at it:
On systems with an older compiler (e.g. many HPC clusters ship GCC 8),
install a modern one from conda-forge alongside the build dependencies, and point `CC`/`CXX` at it:
```bash
conda install gcc_linux-64 gxx_linux-64 scikit-build-core nanobind -c conda-forge -y
export CC=x86_64-conda-linux-gnu-gcc
Expand Down
2 changes: 1 addition & 1 deletion src/bioimage_cpp/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.0"
__version__ = "0.8.0"
Loading