Skip to content

Commit 353f45a

Browse files
authored
Merge pull request #155 from gforcada/maintenance
chore: update project files
2 parents 20acfa9 + 86c973e commit 353f45a

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

.github/workflows/tests.yml renamed to .github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
.coverage
66
.installed.cfg
77
.hypothesis
8+
.tox
89
bin
910
develop-eggs
1011
include
1112
lib
13+
venv

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ ci:
44

55
repos:
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ I00 = "flake8_isort:Flake8Isort"
5151
profile = "plone"
5252

5353
[tool.black]
54-
target-version = ["py39"]
54+
target-version = ["py312"]
5555
skip-string-normalization = true
5656

5757
[tool.check-manifest]

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ description = get a test coverage report
4444
use_develop = true
4545
skip_install = false
4646
deps =
47+
pytest-cov
4748
coverage
4849
commands =
4950
pytest run_tests.py --cov --cov-report term-missing

0 commit comments

Comments
 (0)