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 3b74790 commit c497e1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ pacman:
script:
- pacman -Sy --noconfirm python-pip
- python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt
- uv venv
- uv pip install --all-extras --requirement pyproject.toml .
- uv run mpm --pacman -v DEBUG install vim
- uv --no-progress venv
- uv --no-progress sync --all-extras --dev
- uv --no-progress run --frozen -- mpm --pacman -v DEBUG install vim
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Install package in editable mode with all development dependencies:
$ python -m pip install uv
$ uv venv
$ source .venv/bin/activate
$ uv pip install --all-extras --requirement pyproject.toml .
$ uv sync --all-extras --dev
```

Now you’re ready to hack and abuse `git`.
Expand Down

0 comments on commit c497e1d

Please sign in to comment.