From 892997273b88f8c68d371650f69bbb6f5d2adc46 Mon Sep 17 00:00:00 2001 From: kdmukai Date: Mon, 9 Jun 2025 17:00:40 +0000 Subject: [PATCH 1/2] Minor clarification for macOS --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5237a85..96ea2ab 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,9 @@ Install in developer mode with dev dependencies: ```sh pip install -e .[dev] + +# Note: macOS requires single or double quotes: +pip install -e ".[dev]" ``` Install pre-commit hook: From 87656867e41e19074009096e69fbe807238cd59c Mon Sep 17 00:00:00 2001 From: kdmukai Date: Sun, 29 Jun 2025 08:54:07 -0500 Subject: [PATCH 2/2] Generalize comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96ea2ab..404091b 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Install in developer mode with dev dependencies: ```sh pip install -e .[dev] -# Note: macOS requires single or double quotes: +# Note: zsh and some other shells require quotes around brackets: pip install -e ".[dev]" ```