Skip to content

Commit 6945ce1

Browse files
authored
Update CONTRIBUTING.md (#121)
* Update CONTRIBUTING.md * Update README.md
1 parent 153d386 commit 6945ce1

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ https://docs.astral.sh/uv/getting-started/installation/
2323
You can use `uv` to create a virtual environment (if it doesn’t already exist) and install all project dependencies:
2424

2525
```bash
26-
uv venv
27-
uv sync && source .venv/bin/activate
26+
uv venv && source .venv/bin/activate
27+
uv sync
2828
```
2929

3030
#### Using a specific Python version
3131

3232
```bash
33-
uv venv --python 3.12
34-
uv sync && source .venv/bin/activate
33+
uv venv --python 3.12 && source .venv/bin/activate
34+
uv sync
3535
```
3636

3737
#### Adding a new dependency

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Prerequisites:
3333
```bash
3434
git clone <repository_url>
3535
cd evolve
36-
uv sync && source .venv/bin/activate
36+
uv venv --python=3.12 && source .venv/bin/activate
37+
uv sync
3738
```
3839

3940
### Configuration

0 commit comments

Comments
 (0)