Skip to content

Commit b86d78c

Browse files
committed
docs: update readme with correct venv name
1 parent 5a52af6 commit b86d78c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We recommend using [uv](https://docs.astral.sh/uv/). It's super fast.
2121
1. Run `uv venv env` (creates virtual environment called "env")
2222
* or `python3 -m venv env`
2323
2. Run `source env/bin/activate` (activates the virtual environment)
24-
3. Run `uv sync --extra dev --extra test` (installs the package in develop mode, along with test dependencies)
24+
3. Run `uv sync --extra dev --extra test --active` (installs the package in develop mode, along with test dependencies)
2525
* or `pip install -e ".[dev,test]"`
2626
4. you have to run `pre-commit install` to have auto linting pre commit
2727
5. Run `make test`
@@ -32,9 +32,9 @@ We recommend using [uv](https://docs.astral.sh/uv/). It's super fast.
3232
```bash
3333
uv python install 3.9.19
3434
uv python pin 3.9.19
35-
uv venv
35+
uv venv env
3636
source env/bin/activate
37-
uv sync --extra dev --extra test
37+
uv sync --extra dev --extra test --active
3838
pre-commit install
3939
make test
4040
```

0 commit comments

Comments
 (0)