This is an automated email from the ASF dual-hosted git repository.
petern pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
The following commit(s) were added to refs/heads/main by this push:
new 0f0ba4d docs: Suggest using release mode in the benchmarks docs (#18)
0f0ba4d is described below
commit 0f0ba4d651e07d7807fc00cfe0608030b7359faf
Author: Peter Nguyen <[email protected]>
AuthorDate: Mon Nov 10 07:03:35 2025 -0800
docs: Suggest using release mode in the benchmarks docs (#18)
---
benchmarks/README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/benchmarks/README.md b/benchmarks/README.md
index c0e094e..7613fe2 100644
--- a/benchmarks/README.md
+++ b/benchmarks/README.md
@@ -28,6 +28,12 @@ Install pytest-benchmark:
pip install pytest-benchmark
```
+Please also remember to install sedonadb in release mode and not debug mode
(avoid using the `-e` mentioned in the development docs). Currently we also
need to include the test dependencies.
+
+```bash
+pip install "python/sedonadb[test]"
+```
+
### Running benchmarks
The below commands assume your working directory is in `benchmarks`.