File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 runs-on : ubuntu-latest
1717 steps :
1818 - name : Checkout 🛎️
19- uses : " actions/checkout@v4 "
19+ uses : " actions/checkout@v6 "
2020
2121 - name : Check for changed files
2222 uses : dorny/paths-filter@v2
Original file line number Diff line number Diff line change 1919
2020 steps :
2121 - name : Checkout 🛎️
22- uses : " actions/checkout@v4 "
22+ uses : " actions/checkout@v6 "
2323
2424 - name : Check for changed files
2525 uses : dorny/paths-filter@v2
3232
3333 - name : Setup Python 🐍
3434 if : steps.changes.outputs.code == 'true'
35- uses : " actions/setup-python@v5 "
35+ uses : " actions/setup-python@v6 "
3636 with :
3737 python-version : " 3.9"
3838
Original file line number Diff line number Diff line change 2424
2525 steps :
2626 - name : Checkout 🛎️
27- uses : " actions/checkout@v4 "
27+ uses : " actions/checkout@v6 "
2828
2929 - name : Check for changed files
3030 uses : dorny/paths-filter@v2
3737
3838 - name : Setup Python 🐍
3939 if : steps.changes.outputs.code == 'true'
40- uses : " actions/setup-python@v5 "
40+ uses : " actions/setup-python@v6 "
4141 with :
4242 python-version : " 3.9"
4343
Original file line number Diff line number Diff line change 3939
4040 steps :
4141 - name : Checkout 🛎️
42- uses : " actions/checkout@v4 "
42+ uses : " actions/checkout@v6 "
4343
4444 - name : Check for changed files
4545 if : startsWith(github.ref, 'refs/tags/') != true
5454 - name : Setup Python 🐍
5555 id : setup-python
5656 if : ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
57- uses : " actions/setup-python@v5 "
57+ uses : " actions/setup-python@v6 "
5858 with :
5959 python-version : " ${{ matrix.config.python-version }}"
6060
Original file line number Diff line number Diff line change 4040
4141 steps :
4242 - name : Checkout 🛎️
43- uses : " actions/checkout@v4 "
43+ uses : " actions/checkout@v6 "
4444
4545 - name : Check for changed files
4646 if : startsWith(github.ref, 'refs/tags/') != true
5555 - name : Setup Python 🐍
5656 id : setup-python
5757 if : ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
58- uses : " actions/setup-python@v5 "
58+ uses : " actions/setup-python@v6 "
5959 with :
6060 python-version : " ${{ matrix.config.python-version }}"
6161
@@ -89,10 +89,10 @@ jobs:
8989 runs-on : " ubuntu-22.04"
9090 steps :
9191 - name : Checkout 🛎️
92- uses : " actions/checkout@v4 "
92+ uses : " actions/checkout@v6 "
9393
9494 - name : Setup Python 🐍
95- uses : " actions/setup-python@v5 "
95+ uses : " actions/setup-python@v6 "
9696 with :
9797 python-version : 3.8
9898
@@ -142,11 +142,11 @@ jobs:
142142 runs-on : " ubuntu-22.04"
143143 steps :
144144 - name : Checkout 🛎️
145- uses : " actions/checkout@v4 "
145+ uses : " actions/checkout@v6 "
146146 if : startsWith(github.ref, 'refs/tags/')
147147
148148 - name : Setup Python 🐍
149- uses : " actions/setup-python@v5 "
149+ uses : " actions/setup-python@v6 "
150150 if : startsWith(github.ref, 'refs/tags/')
151151 with :
152152 python-version : 3.8
Original file line number Diff line number Diff line change 3939
4040 steps :
4141 - name : Checkout 🛎️
42- uses : " actions/checkout@v4 "
42+ uses : " actions/checkout@v6 "
4343
4444 - name : Check for changed files
4545 if : startsWith(github.ref, 'refs/tags/') != true
5454 - name : Setup Python 🐍
5555 id : setup-python
5656 if : ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
57- uses : " actions/setup-python@v5 "
57+ uses : " actions/setup-python@v6 "
5858 with :
5959 python-version : " ${{ matrix.config.python-version }}"
6060
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ exclude: ^$
55
66ci :
77 autoupdate_schedule : quarterly
8+ skip : [taplo-lint]
89
910repos :
1011 - repo : https://github.com/repo-helper/pyproject-parser
2122 - id : check-case-conflict
2223 - id : check-executables-have-shebangs
2324 - id : check-json
24- - id : check-toml
2525 - id : check-yaml
2626 - id : check-merge-conflict
2727 - id : check-symlinks
@@ -31,15 +31,24 @@ repos:
3131 - id : mixed-line-ending
3232 - id : end-of-file-fixer
3333
34+ - repo : https://github.com/domdfcoding/taplo-pre-commit
35+ rev : v0.10.0
36+ hooks :
37+ - id : taplo-lint
38+ args : []
39+
3440 - repo : https://github.com/domdfcoding/pre-commit-hooks
35- rev : v0.6 .0
41+ rev : v0.7 .0
3642 hooks :
3743 - id : requirements-txt-sorter
3844 args :
3945 - --allow-git
4046 - id : check-docstring-first
4147 exclude : ^(doc-source/conf|__pkginfo__|setup|tests/.*)\.py$
4248 - id : bind-requirements
49+ args :
50+ - --python-min
51+ - ' 3.7'
4352
4453 - repo : https://github.com/python-formate/flake8-dunder-all
4554 rev : v0.5.0
6170 - id : rst-inline-touching-normal
6271
6372 - repo : https://github.com/python-formate/pyupgrade
64- rev : ' 2e49872 '
73+ rev : bbe3007
6574 hooks :
6675 - id : pyupgrade
6776 args :
8089 - id : snippet-fmt
8190
8291 - repo : https://github.com/python-formate/formate
83- rev : v1.2.0
92+ rev : v1.2.1
8493 hooks :
8594 - id : formate
8695 exclude : ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ setenv =
5353 PYTHONDEVMODE =1
5454 PIP_DISABLE_PIP_VERSION_CHECK =1
5555 SETUPTOOLS_USE_DISTUTILS =stdlib
56+ download = True
5657deps = -r{toxinidir}/tests/requirements.txt
5758commands =
5859 python --version
@@ -64,13 +65,11 @@ setenv =
6465 PIP_DISABLE_PIP_VERSION_CHECK =1
6566
6667[testenv:py313]
67- download = True
6868setenv =
6969 PYTHONDEVMODE =1
7070 PIP_DISABLE_PIP_VERSION_CHECK =1
7171
7272[testenv:py312]
73- download = True
7473setenv =
7574 PYTHONDEVMODE =1
7675 PIP_DISABLE_PIP_VERSION_CHECK =1
You can’t perform that action at this time.
0 commit comments