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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
cache: "pip"

- name: Install Ruff
run: pip install ruff
run: pip install ruff==0.12.3

- name: Ruff check
run: ruff check .
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Publishes the package to PyPI. Runs alongside release.yml (same v* tag
# trigger, separate purpose): this workflow publishes the distribution to
# PyPI via trusted publishing; release.yml creates the GitHub Release with
# generated notes and uploads the same distribution as release assets.
name: Publish to PyPI

on:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Creates the GitHub Release with generated notes and uploaded distribution
# assets. Runs alongside pypi-publish.yml (same v* tag trigger, separate
# purpose): that workflow publishes the distribution to PyPI; this one
# publishes the GitHub Release. Each builds its own copy of the package
# rather than sharing a build artifact between the two workflows.
name: Release

on:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies = [
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.8.0",
"ruff==0.12.3",
]

[project.scripts]
Expand Down
Loading