Skip to content

Commit b9af528

Browse files
authored
use uv sync --dev shortcut for uv sync --group dev (#9)
1 parent bd8f015 commit b9af528

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Install dependencies
5353
run: |
5454
pip install uv
55-
uv sync --group dev
55+
uv sync --dev
5656
- name: force right version
5757
run: |
5858
.github/change_version.py --set '${{ inputs.version }}'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
pip install uv
30-
uv sync --group dev
30+
uv sync --dev
3131
3232
- name: Lint check
3333
id: lint-check

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This project uses `uv`, so set up the virtualenv by running
44

55
```
6-
uv sync --group dev
6+
uv sync --dev
77
```
88

99
Use `make test` to make sure all tests pass before pushing.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
* `pytest` for tests: `make test`
66
* `ruff` for linting/formatting: `make lint` (replaces both `black` and `isort`)
7-
* `uv` for dependency and virtualenv management (`uv sync --group dev`)
7+
* `uv` for dependency and virtualenv management (`uv sync --dev`)
88
* `.github` with actions ready to be used
99
* [test](.github/workflows/test.yml) runs lint checks and unit tests
1010
* [publish-dev](.github/workflows/publish-dev.yml) publishes feature branches (`dev`/`dev-*`) to:

0 commit comments

Comments
 (0)