Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update pyproject.toml to work for uv #54

Merged
merged 8 commits into from
Nov 21, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add pre-commit hook and poe tasks
ceesem committed Nov 21, 2024
commit c06da5c83fe49c856dd1b162a3e1c1195302a2ba
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -81,4 +81,11 @@ commit_args = ""
filename = "src/nglui/__init__.py"

[tool.ruff.lint]
select=["E9","F63","F7","F82"]
select=["E9","F63","F7","F82"]

[tool.poe.tasks]
patch_ = "uv run bump-my-version bump patch --dry-run -vv"
minor_ = "uv run bump-my-version bump minor --dry-run -vv"
major_ = "uv run bump-my-version bump patch --dry-run -vv"