From 1346e65b952bd9af229b702636c1d9cb26755888 Mon Sep 17 00:00:00 2001 From: James Briggs <35938317+jamescalam@users.noreply.github.com> Date: Fri, 14 Feb 2025 16:28:11 +0400 Subject: [PATCH] fix: drop editable flag --- .github/workflows/docs.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 52d79142..bb8d3232 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} run: uv venv --python ${{ matrix.python-version }} - name: Install dependencies - run: uv pip install -e .[docs] + run: uv pip install .[docs] - name: Build docs run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 514375ed..8815bb84 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} run: uv venv --python 3.13 - name: Install dependencies - run: uv pip install -e .[dev] + run: uv pip install .[dev] - name: Analyzing the code with our lint run: | make lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0637f8ad..43289f0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Install uv run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Install dependencies - run: uv pip install -e .[dev] + run: uv pip install .[dev] - name: Build run: uv build @@ -29,7 +29,7 @@ jobs: - name: Install uv run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Install dependencies - run: uv pip install -e .[dev] + run: uv pip install .[dev] - name: Build run: uv build - name: Publish to PyPI diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5df34526..11fd5436 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,7 +49,7 @@ jobs: # run: echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV - name: Install dependencies - run: uv pip install -e .[all] + run: uv pip install .[all] - name: Install nltk run: uv pip install nltk -- GitLab