Skip to content

Commit e2b353b

Browse files
Bump version and extend disclaimer
1 parent ecfa441 commit e2b353b

3 files changed

Lines changed: 19 additions & 5 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@ conda install -c conda-forge bioimage-cpp
2424
```
2525

2626
Please refer to [the documentation](https://computational-cell-analytics.github.io/bioimage-cpp/) for details.
27+
28+
**Disclaimer:** The functionality of this library was implemented mainly by coding agents (Claude Code and OpenAI Codex).
29+
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.
30+
Nevertheless, it may contain bugs or unintended behavior (as most software does).
31+
If you find such a problem, please [open an issue on github](https://github.com/computational-cell-analytics/bioimage-cpp/issues).
32+
We are committed to improving and mainting this software.

src/bioimage_cpp/__init__.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@
1313
1414
The goal is to provide the functionality within a single library and via pip as well as conda.
1515
16-
**Warning:** This library was written mainly by coding agents (claude code and openai codex).
17-
It is not very thoroughly tested and may contain bugs.
16+
**Disclaimer:** The functionality of this library was implemented mainly by coding agents (Claude Code, OpenAI Codex).
17+
We make our best efforts to test the implementations thoroughly
18+
and are already using it heavily in our day-to-day research
19+
and have integrated it with other software tools.
20+
Nevertheless, it may contain bugs or unintended behavior (as most software does).
21+
If you find such a problem,
22+
please [open an issue on github](https://github.com/computational-cell-analytics/bioimage-cpp/issues).
23+
We are committed to improving and mainting this software.
1824
1925
## Installation
2026
@@ -28,7 +34,8 @@
2834
conda install -c conda-forge bioimage-cpp
2935
```
3036
31-
Additional dependencies for tests / data downloads can be installed via `pip install bioimage-cpp[test]` / `pip install bioimage-cpp[data]` respectively.
37+
Additional dependencies for tests / data downloads
38+
can be installed via `pip install bioimage-cpp[test]` / `pip install bioimage-cpp[data]` respectively.
3239
3340
You can also install this library from source. The build requires C++20 (GCC >= 10 or Clang >= 13).
3441
@@ -39,7 +46,8 @@
3946
pip install -e .
4047
```
4148
42-
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:
49+
On systems with an older compiler (e.g. many HPC clusters ship GCC 8),
50+
install a modern one from conda-forge alongside the build dependencies, and point `CC`/`CXX` at it:
4351
```bash
4452
conda install gcc_linux-64 gxx_linux-64 scikit-build-core nanobind -c conda-forge -y
4553
export CC=x86_64-conda-linux-gnu-gcc

src/bioimage_cpp/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0"
1+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)