From 70fcc6f07bbeba48d8bbc2d8e76c5972e2b4eaee Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Mon, 7 Apr 2025 18:13:23 -0400 Subject: [PATCH] Fix installation --- .github/workflows/run-tests.yml | 2 +- README.md | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8f83af7ae..3aea8fdff 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -46,7 +46,7 @@ jobs: run: uv python install ${{ matrix.python-version }} - name: Install FastMCP - run: uv sync --extra tests + run: uv sync - name: Run tests run: uv run pytest -vv diff --git a/README.md b/README.md index 9284df4b4..5b6ee6850 100644 --- a/README.md +++ b/README.md @@ -506,13 +506,7 @@ For development, we recommend installing FastMCP with development dependencies, ```bash git clone https://github.com/jlowin/fastmcp.git cd fastmcp -uv sync --frozen --extra dev -``` - -For running tests only (e.g., in CI), you only need the testing dependencies: - -```bash -uv sync --frozen --extra tests +uv sync ``` ### Testing