Skip to content

Commit 78164ad

Browse files
committed
README.rst: Update Dev mode install instructions
Closes #191 - Quoting `.[dev]` ensures compatibility with stricter shells (e.g., zsh). This resolves installation issues in dev mode with the following: ``` $ zsh --version zsh 5.9 (arm64-apple-darwin24.0) $ python3 --version Python 3.13.1 ```
1 parent 8f3bfb2 commit 78164ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can set up a development environment by running:
3939
```bash
4040
python3 -m venv .venv
4141
source ./.venv/bin/activate
42-
pip install -v -e .[dev]
42+
pip install -v -e '.[dev]'
4343
```
4444

4545
If you have the
@@ -48,7 +48,7 @@ can instead do:
4848

4949
```bash
5050
py -m venv .venv
51-
py -m install -v -e .[dev]
51+
py -m install -v -e '.[dev]'
5252
```
5353

5454
# Post setup

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Dev mode
5353
^^^^^^^^
5454
.. code:: sh
5555
56-
pip install -e .[dev]
56+
pip install -e '.[dev]'
5757
5858
Version control of database using DVC (Data Version Control)
5959
-------------------------------------------------------------

0 commit comments

Comments
 (0)