Skip to content

Commit

Permalink
Use prefered method to install project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Aug 28, 2024
1 parent 2ff31ac commit 3018025
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install project
run: |
uv --no-progress venv
uv --no-progress pip install --all-extras --requirement pyproject.toml .
uv --no-progress sync --all-extras --dev
- name: Generate dynamic doc
run: |
uv --no-progress run --frozen -- python -m click_extra.docs_update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Install project
run: |
uv --no-progress venv
uv --no-progress pip install --all-extras --requirement ./pyproject.toml .
uv --no-progress sync --all-extras --dev
- name: Unittests
run: >
Expand Down
2 changes: 1 addition & 1 deletion docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ $ uv venv
$ source .venv/bin/activate
(...)
$ uv pip install --all-extras ./pyproject.toml
$ uv sync --all-extras --dev
(...)
$ uv run -- python -m pip install dbt-core
Expand Down

0 comments on commit 3018025

Please sign in to comment.