Skip to content

Commit fb31adc

Browse files
authored
Merge pull request #180 from iterative/bump-deps
chore: bump linters & fix CI
2 parents feaf1a1 + 58253a9 commit fb31adc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
test:
99
if: github.event_name != 'pull_request' || !contains('OWNER,MEMBER,COLLABORATOR', github.event.pull_request.author_association)
1010
name: Test py${{ matrix.python }}
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-${{ matrix.python == 3.7 && '22.04' || 'latest' }}
1212
strategy:
1313
matrix:
1414
python: [3.7, 3.12]
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install
2222
run: pip install -U -e .[dev]
2323
- run: pytest
24-
- uses: codecov/codecov-action@v4
24+
- uses: codecov/codecov-action@v5
2525
with:
2626
token: ${{ secrets.CODECOV_TOKEN }}
2727
deploy:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ repos:
4040
- flake8-pyproject
4141
- flake8-string-format
4242
- repo: https://github.com/pre-commit/mirrors-mypy
43-
rev: v1.14.1
43+
rev: v1.15.0
4444
hooks:
4545
- id: mypy
4646
additional_dependencies: [types-setuptools]
@@ -51,7 +51,7 @@ repos:
5151
args: [-i]
5252
additional_dependencies: [toml]
5353
- repo: https://github.com/PyCQA/isort
54-
rev: 5.13.2
54+
rev: 6.0.0
5555
hooks:
5656
- id: isort
5757
ci:

0 commit comments

Comments
 (0)