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: ...@@ -32,7 +32,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
run: uv venv --python ${{ matrix.python-version }} run: uv venv --python ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: uv pip install -e .[docs] run: uv pip install .[docs]
- name: Build docs - name: Build docs
run: | run: |
......
...@@ -26,7 +26,7 @@ jobs: ...@@ -26,7 +26,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
run: uv venv --python 3.13 run: uv venv --python 3.13
- name: Install dependencies - name: Install dependencies
run: uv pip install -e .[dev] run: uv pip install .[dev]
- name: Analyzing the code with our lint - name: Analyzing the code with our lint
run: | run: |
make lint make lint
...@@ -15,7 +15,7 @@ jobs: ...@@ -15,7 +15,7 @@ jobs:
- name: Install uv - name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies - name: Install dependencies
run: uv pip install -e .[dev] run: uv pip install .[dev]
- name: Build - name: Build
run: uv build run: uv build
...@@ -29,7 +29,7 @@ jobs: ...@@ -29,7 +29,7 @@ jobs:
- name: Install uv - name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies - name: Install dependencies
run: uv pip install -e .[dev] run: uv pip install .[dev]
- name: Build - name: Build
run: uv build run: uv build
- name: Publish to PyPI - name: Publish to PyPI
......
...@@ -49,7 +49,7 @@ jobs: ...@@ -49,7 +49,7 @@ jobs:
# run: echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV # run: echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
- name: Install dependencies - name: Install dependencies
run: uv pip install -e .[all] run: uv pip install .[all]
- name: Install nltk - name: Install nltk
run: uv pip install nltk run: uv pip install nltk
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment