Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ https://docs.astral.sh/uv/getting-started/installation/
You can use `uv` to create a virtual environment (if it doesn’t already exist) and install all project dependencies:

```bash
uv venv
uv sync && source .venv/bin/activate
uv venv && source .venv/bin/activate
uv sync
```

#### Using a specific Python version

```bash
uv venv --python 3.12
uv sync && source .venv/bin/activate
uv venv --python 3.12 && source .venv/bin/activate
uv sync
```

#### Adding a new dependency
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Prerequisites:
```bash
git clone <repository_url>
cd evolve
uv sync && source .venv/bin/activate
uv venv --python=3.12 && source .venv/bin/activate
uv sync
```

### Configuration
Expand Down
Loading