Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Commit 32ec28d

Browse files
authored
Maintenance updates (#34)
* updated python version specifications in CI workflows * pre-commit autoupdate
1 parent 6df4eb7 commit 32ec28d

4 files changed

Lines changed: 16 additions & 23 deletions

File tree

.github/workflows/format.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,18 @@ defaults:
77
jobs:
88
format-job-identifier:
99
name: format job name
10-
strategy:
11-
fail-fast: false
12-
matrix:
13-
runner-platform:
14-
- ubuntu-latest
15-
python-version:
16-
- "3.10"
17-
runs-on: ${{ matrix.runner-platform }}
10+
runs-on: ubuntu-latest
1811
steps:
1912
- name: checkout commit
2013
uses: actions/checkout@v4
21-
- name: set up python ${{ matrix.python-version }}
14+
- name: set up python
2215
uses: actions/setup-python@v4
2316
with:
24-
python-version: ${{ matrix.python-version }}
17+
python-version: "3.10"
2518
check-latest: true
2619
architecture: x64
2720
cache: pip
28-
- name: run formatters on python ${{ matrix.python-version }}
21+
- name: run formatters
2922
uses: ./.github/actions/nox-tags-action-identifier
3023
with:
3124
tag-name-input-identifier: format

.github/workflows/lint.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
runner-platform:
14-
- ubuntu-latest
1513
python-version:
1614
- "3.10"
1715
- "3.11"
1816
- "3.12"
19-
runs-on: ${{ matrix.runner-platform }}
17+
runs-on: ubuntu-latest
2018
steps:
2119
- name: checkout commit
2220
uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
- name: set up python ${{ matrix.python-version }}
2929
uses: actions/setup-python@v4
3030
with:
31-
python-version: ${{ matrix.python-version }}
31+
python-version: |
32+
${{ matrix.python-version }}
33+
3.10
3234
check-latest: true
3335
architecture: x64
3436
cache: pip

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ repos:
4242
- src
4343
pass_filenames: false
4444
- repo: https://github.com/pycqa/isort
45-
rev: 5.12.0
45+
rev: 5.13.2
4646
hooks:
4747
- id: isort
4848
args:
4949
- src
5050
pass_filenames: false
5151
- repo: https://github.com/psf/black
52-
rev: 23.11.0
52+
rev: 23.12.0
5353
hooks:
5454
- id: black
5555
args:
5656
- src
5757
pass_filenames: false
5858
- repo: https://github.com/pycqa/bandit
59-
rev: 1.7.5
59+
rev: 1.7.6
6060
hooks:
6161
- id: bandit
6262
args:
@@ -75,7 +75,7 @@ repos:
7575
- src
7676
pass_filenames: false
7777
- repo: https://github.com/pre-commit/mirrors-mypy
78-
rev: v1.7.0
78+
rev: v1.7.1
7979
hooks:
8080
- id: mypy
8181
additional_dependencies:
@@ -87,7 +87,7 @@ repos:
8787
stages:
8888
- manual
8989
- repo: https://github.com/PyCQA/pylint
90-
rev: v3.0.1
90+
rev: v3.0.3
9191
hooks:
9292
- id: pylint
9393
args:
@@ -98,14 +98,14 @@ repos:
9898
stages:
9999
- manual
100100
- repo: https://github.com/RobertCraigie/pyright-python
101-
rev: v1.1.336
101+
rev: v1.1.341
102102
hooks:
103103
- id: pyright
104104
pass_filenames: false
105105
stages:
106106
- manual
107107
- repo: https://github.com/astral-sh/ruff-pre-commit
108-
rev: v0.1.6
108+
rev: v0.1.8
109109
hooks:
110110
- id: ruff
111111
args:
@@ -152,7 +152,7 @@ repos:
152152
- src
153153
pass_filenames: false
154154
- repo: https://github.com/tox-dev/pyproject-fmt
155-
rev: 1.5.1
155+
rev: 1.5.3
156156
hooks:
157157
- id: pyproject-fmt
158158
- repo: https://github.com/abravalheri/validate-pyproject

0 commit comments

Comments
 (0)