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
18 changes: 9 additions & 9 deletions .github/workflows/retile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: |
pip install -t ${GITHUB_WORKSPACE}/install/python .
- name: Upload build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build
path: install
Expand All @@ -92,7 +92,7 @@ jobs:
- name: Install dependencies
run: dnf install -y ${RUNTIME_DEPS}
- name: Download build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build
path: install
Expand All @@ -109,7 +109,7 @@ jobs:
matrix
echo "slide-matrix=$(cat matrix)" >> $GITHUB_OUTPUT
- name: Upload context
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: context
path: context
Expand All @@ -132,12 +132,12 @@ jobs:
- name: Install dependencies
run: dnf install -y ${RUNTIME_DEPS}
- name: Download build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build
path: install
- name: Download context
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: context
- name: Tile slide
Expand All @@ -152,7 +152,7 @@ jobs:
${GITHUB_WORKSPACE}/summary
echo "ARTIFACT_NAME=summary-$(echo "${{ matrix.slide }}" | tr -c "a-zA-Z0-9\n" _)" >> $GITHUB_ENV
- name: Upload summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.ARTIFACT_NAME }}
path: summary
Expand All @@ -170,16 +170,16 @@ jobs:
- name: Install dependencies
run: dnf install -y ${RUNTIME_DEPS}
- name: Download build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build
path: install
- name: Download context
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: context
- name: Download summaries
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: "summary-*"
path: summary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: 3.14
- name: Install dependencies
run: python -m pip install pre-commit
- name: Cache pre-commit environments
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
rev: v3.21.0
hooks:
- id: pyupgrade
name: Modernize Python code
args: ["--py313-plus"]

- repo: https://github.com/PyCQA/isort
rev: 6.0.1
rev: 7.0.0
hooks:
- id: isort
name: Reorder Python imports with isort

- repo: https://github.com/psf/black
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black
name: Format Python code with black
Expand All @@ -47,7 +47,7 @@ repos:
additional_dependencies: [flake8-bugbear, Flake8-pyproject]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
rev: v1.18.2
hooks:
- id: mypy
name: Check Python types
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.black]
line-length = 79
skip-string-normalization = true
target-version = ["py313"]
target-version = ["py313", "py314"]

# Ref: https://github.com/codespell-project/codespell#using-a-config-file
[tool.codespell]
Expand Down