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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
with:
python-version: "3.13"
- name: Install dependencies
run: pip install hatch
# renovate: datasource=pypi depName=hatch
run: pip install hatch==1.18.0
- name: Build wheel (used by e2e tests via PIP_FIND_LINKS)
run: hatch build --target wheel
- name: Run tests
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
with:
python-version: "3.13"
- name: Install pip package(s)
run: pip install hatch
# renovate: datasource=pypi depName=hatch
run: pip install hatch==1.18.0
- name: Run black formatter check
run: hatch run dev:black --check --verbose src tests
- name: Run flake8 linter
Expand Down