Skip to content
Snippets Groups Projects
Commit 1346e65b authored by James Briggs's avatar James Briggs
Browse files

fix: drop editable flag

parent 31dee1f7
No related branches found
No related tags found
No related merge requests found
......@@ -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: |
......
......@@ -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
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment