Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv sync --group dev
uv sync --dev
- name: force right version
run: |
.github/change_version.py --set '${{ inputs.version }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv sync --group dev
uv sync --dev

- name: Lint check
id: lint-check
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This project uses `uv`, so set up the virtualenv by running

```
uv sync --group dev
uv sync --dev
```

Use `make test` to make sure all tests pass before pushing.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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