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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ jobs:
- name: Validate wheel import
shell: bash
run: |
uv pip install --force-reinstall dist/*.whl
uv run --frozen python -c "import buscar; print(buscar.__name__)"
uv run --isolated --no-project --with ./dist/buscar-*.whl -- \
python -c "import buscar; print(buscar.__name__)"
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repos:

# Ruff for linting and formatting Python files
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.12
rev: v0.16.7
hooks:
- id: ruff-check
args: ["--fix"]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[dependency-groups]
dev = [
"pre-commit>=4.6.2",
"pytest>=8.4.1",
"pytest-cov>=6.0.0",
"ruff>=0.8.1",
Expand Down
Loading
Loading