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
fix: correct uv installation instructions in contributing docs
  • Loading branch information
HaohanTsao committed Mar 24, 2025
commit dab57055b18d81ad68296029717a480553c6ba43
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate

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

# Alternatively, using pip
# python -m venv venv
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ cd fastapi_mcp
# Create a virtual environment and install dependencies with uv
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv add -e ".[dev]"
uv sync --extra dev

# Run tests
uv run pytest
Expand Down