Skip to content

Commit 939b8b4

Browse files
Updated files with 'repo_helper'. (#74)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 0059af3 commit 939b8b4

8 files changed

Lines changed: 18 additions & 7 deletions

File tree

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: "actions/checkout@v6"
2323

2424
- name: Check for changed files
25-
uses: dorny/paths-filter@v2
25+
uses: dorny/paths-filter@v4
2626
id: changes
2727
with:
2828
list-files: "json"

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: "actions/checkout@v6"
2828

2929
- name: Check for changed files
30-
uses: dorny/paths-filter@v2
30+
uses: dorny/paths-filter@v4
3131
id: changes
3232
with:
3333
list-files: "json"

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Check for changed files
4545
if: startsWith(github.ref, 'refs/tags/') != true
46-
uses: dorny/paths-filter@v2
46+
uses: dorny/paths-filter@v4
4747
id: changes
4848
with:
4949
list-files: "json"

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Check for changed files
4646
if: startsWith(github.ref, 'refs/tags/') != true
47-
uses: dorny/paths-filter@v2
47+
uses: dorny/paths-filter@v4
4848
id: changes
4949
with:
5050
list-files: "json"

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Check for changed files
4545
if: startsWith(github.ref, 'refs/tags/') != true
46-
uses: dorny/paths-filter@v2
46+
uses: dorny/paths-filter@v4
4747
id: changes
4848
with:
4949
list-files: "json"

.pre-commit-config.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repos:
3838
args: []
3939

4040
- repo: https://github.com/domdfcoding/pre-commit-hooks
41-
rev: v0.7.0
41+
rev: v0.8.1
4242
hooks:
4343
- id: requirements-txt-sorter
4444
args:
@@ -84,9 +84,11 @@ repos:
8484
- id: forbid-crlf
8585

8686
- repo: https://github.com/python-formate/snippet-fmt
87-
rev: v0.1.5
87+
rev: v0.3.1
8888
hooks:
8989
- id: snippet-fmt
90+
additional_dependencies:
91+
- formate-trailing-commas>=0.1.1
9092

9193
- repo: https://github.com/python-formate/formate
9294
rev: v1.2.1

justfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ bare-ignore:
2323

2424
lint: unused-imports incomplete-defs bare-ignore
2525
tox -n qa
26+
27+
uncomm:
28+
git status -uall --ignored
29+
30+
# Custom commands can be added below this comment

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
# * envlists
55
# * testenv
66
# * testenv:.package
7+
# * testenv:py315-dev
8+
# * testenv:py315
9+
# * testenv:py314-dev
10+
# * testenv:py314
711
# * testenv:py313-dev
812
# * testenv:py313
913
# * testenv:py312-dev

0 commit comments

Comments
 (0)