File tree Expand file tree Collapse file tree 5 files changed +17
-14
lines changed Expand file tree Collapse file tree 5 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ jobs:
1616 steps :
1717 - uses : actions/checkout@v4
1818 - name : Set up Python
19- uses : actions/setup-python@v4
19+ uses : actions/setup-python@v5
2020 with :
2121 python-version : ${{ matrix.python-version }}
2222 - name : Cache packages
23- uses : actions/cache@v3
23+ uses : actions/cache@v4
2424 with :
2525 path : ~/.cache/pip
2626 key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini') }}
@@ -36,15 +36,15 @@ jobs:
3636 runs-on : " ubuntu-latest"
3737 strategy :
3838 matrix :
39- python-version : [3.9 ]
39+ python-version : [3.12 ]
4040 steps :
4141 - uses : actions/checkout@v4
4242 - name : Set up Python
43- uses : actions/setup-python@v4
43+ uses : actions/setup-python@v5
4444 with :
4545 python-version : ${{ matrix.python-version }}
4646 - name : Cache packages
47- uses : actions/cache@v3
47+ uses : actions/cache@v4
4848 with :
4949 path : |
5050 ~/.cache/pre-commit
Original file line number Diff line number Diff line change 55.coverage
66.installed.cfg
77.hypothesis
8+ .tox
89bin
910develop-eggs
1011include
1112lib
13+ venv
Original file line number Diff line number Diff line change 44
55repos :
66- repo : https://github.com/asottile/pyupgrade
7- rev : v3.14 .0
7+ rev : v3.20 .0
88 hooks :
99 - id : pyupgrade
10- args : [--py39 -plus]
10+ args : [--py38 -plus]
1111- repo : https://github.com/pycqa/isort
12- rev : 5.12.0
12+ rev : 6.0.1
1313 hooks :
1414 - id : isort
1515- repo : https://github.com/psf/black
16- rev : 23.9.1
16+ rev : 25.1.0
1717 hooks :
1818 - id : black
1919- repo : https://github.com/PyCQA/flake8
20- rev : 6.1 .0
20+ rev : 7.3 .0
2121 hooks :
2222 - id : flake8
2323 additional_dependencies :
@@ -32,17 +32,17 @@ repos:
3232 - flake8-quotes
3333
3434- repo : https://github.com/codespell-project/codespell
35- rev : v2.2.6
35+ rev : v2.4.1
3636 hooks :
3737 - id : codespell
3838 additional_dependencies :
3939 - tomli
4040- repo : https://github.com/mgedmin/check-manifest
41- rev : " 0.49 "
41+ rev : " 0.50 "
4242 hooks :
4343 - id : check-manifest
4444- repo : https://github.com/regebro/pyroma
45- rev : " 4.2 "
45+ rev : " 5.0 "
4646 hooks :
4747 - id : pyroma
4848- repo : https://github.com/mgedmin/check-python-versions
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ I00 = "flake8_isort:Flake8Isort"
5151profile = " plone"
5252
5353[tool .black ]
54- target-version = [" py39 " ]
54+ target-version = [" py312 " ]
5555skip-string-normalization = true
5656
5757[tool .check-manifest ]
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ description = get a test coverage report
4444use_develop = true
4545skip_install = false
4646deps =
47+ pytest-cov
4748 coverage
4849commands =
4950 pytest run_tests.py --cov --cov-report term-missing
You can’t perform that action at this time.
0 commit comments