diff --git a/README.md b/README.md index 294388a..71dc6ad 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/bioimage_cpp/__init__.py b/src/bioimage_cpp/__init__.py index 23c8657..c84c0cc 100644 --- a/src/bioimage_cpp/__init__.py +++ b/src/bioimage_cpp/__init__.py @@ -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 @@ -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). @@ -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 diff --git a/src/bioimage_cpp/_version.py b/src/bioimage_cpp/_version.py index 49e0fc1..777f190 100644 --- a/src/bioimage_cpp/_version.py +++ b/src/bioimage_cpp/_version.py @@ -1 +1 @@ -__version__ = "0.7.0" +__version__ = "0.8.0"