Skip to content

Commit a0c595a

Browse files
authored
On second thought, just install . and not .[dev] like the testing wf
Updated installation command to remove 'dev' dependencies.
1 parent 954382c commit a0c595a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-project-template/.github/workflows/{% if include_docs %}build-documentation.yml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
sudo apt-get update
31-
uv pip install --system -e .[dev]
31+
uv pip install --system -e .
3232
if [ -f requirements.txt ]; then uv pip install --system -r requirements.txt; fi
3333
{%- if include_notebooks %}
3434
- name: Install notebook requirements

0 commit comments

Comments
 (0)