diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 52d7914222cf56fd624bc7083df3741d93f7fd2b..bb8d3232d93f1abaa0cec235feae78b8cfdb302f 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 514375ed1686ab695217001fbb4913df949a614c..8815bb848248cff4a625694302d236d945afa0e2 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 0637f8adf1999b2d832b0fd59024d63f58c7197b..43289f0ccb1d4c87d192cb4f8f380ff6ff399370 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 5df3452686d97365560b6e46528df710a5d80d52..11fd54361cb395a3eb72af05bef68f53ab9a9f5f 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