Skip to content

Commit 2ff9309

Browse files
author
shiraayal-tadata
authored
Merge pull request #21 from HaohanTsao/fix/uv-installation-docs
fix(#20): correct uv installation instructions in contributing docs
2 parents 040d31a + dab5705 commit 2ff9309

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ uv venv
1919
source .venv/bin/activate # On Windows: .venv\Scripts\activate
2020

2121
# Install development dependencies with uv
22-
uv add -e ".[dev]"
22+
uv sync --extra dev
2323

2424
# Alternatively, using pip
2525
# python -m venv venv

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ cd fastapi_mcp
137137
# Create a virtual environment and install dependencies with uv
138138
uv venv
139139
source .venv/bin/activate # On Windows: .venv\Scripts\activate
140-
uv add -e ".[dev]"
140+
uv sync --extra dev
141141

142142
# Run tests
143143
uv run pytest

0 commit comments

Comments
 (0)