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
12 changes: 6 additions & 6 deletions .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Get Non-Hyphenated Python Version
id: get-pyver
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
uv run tox -e ${{ steps.get-pyver.outputs.PYVER }}

- name: Cache coverage for ${{ matrix.python-version }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: cov_py${{ matrix.python-version }}
path: .coverage
Expand All @@ -90,15 +90,15 @@ jobs:
needs: test

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"

- name: Pull coverage workflow artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
path: cov_cache/

Expand All @@ -116,7 +116,7 @@ jobs:
coverage report --format=markdown >> $GITHUB_STEP_SUMMARY

- name: Publish cov HTML
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
path: htmlcov/
name: cov_report_html
2 changes: 1 addition & 1 deletion .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ ci:

repos:
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
rev: 25.12.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 6.1.0
rev: 7.0.0
hooks:
- id: isort
name: isort
Expand All @@ -27,7 +27,7 @@ repos:
- id: python-check-blanket-type-ignore
exclude: "test_type_ignore.py"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.0
rev: v0.14.10
hooks:
- id: ruff-check
- repo: local
Expand Down
Loading