This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git
The following commit(s) were added to refs/heads/main by this push:
new 68136a77 [MINOR][Documentation] Fix pip install with test dependencies
(#463)
68136a77 is described below
commit 68136a77173897b1b88b0251faff318b57aa7b6e
Author: Alenka Frim <[email protected]>
AuthorDate: Wed May 15 17:41:46 2024 +0200
[MINOR][Documentation] Fix pip install with test dependencies (#463)
Adding missing double quotes so the install with tests works.
---
python/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/README.md b/python/README.md
index 8411f690..42b4e390 100644
--- a/python/README.md
+++ b/python/README.md
@@ -259,7 +259,7 @@ Tests use [pytest](https://docs.pytest.org/):
```shell
# Install dependencies
-pip install -e .[test]
+pip install -e ".[test]"
# Run tests
pytest -vvx