Skip to content

Commit d744c10

Browse files
authored
Bump deps and tools (#49)
Committed via https://github.com/asottile/all-repos
1 parent f110033 commit d744c10

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

.pre-commit-config.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.3.0
3+
rev: v4.4.0
44
hooks:
55
- id: check-ast
66
- id: check-builtin-literals
@@ -16,47 +16,47 @@ repos:
1616
hooks:
1717
- id: codespell
1818
- repo: https://github.com/asottile/pyupgrade
19-
rev: v2.37.3
19+
rev: v3.3.1
2020
hooks:
2121
- id: pyupgrade
2222
args: [ "--py36-plus" ]
2323
- repo: https://github.com/PyCQA/isort
24-
rev: 5.10.1
24+
rev: 5.12.0
2525
hooks:
2626
- id: isort
2727
- repo: https://github.com/psf/black
28-
rev: 22.6.0
28+
rev: 23.1.0
2929
hooks:
3030
- id: black
3131
args: [ --safe ]
3232
- repo: https://github.com/asottile/blacken-docs
33-
rev: v1.12.1
33+
rev: 1.13.0
3434
hooks:
3535
- id: blacken-docs
36-
additional_dependencies: [ black==22.10 ]
36+
additional_dependencies: [ black==23.1 ]
3737
- repo: https://github.com/pre-commit/pygrep-hooks
38-
rev: v1.9.0
38+
rev: v1.10.0
3939
hooks:
4040
- id: rst-backticks
4141
- repo: https://github.com/tox-dev/tox-ini-fmt
42-
rev: "0.5.2"
42+
rev: "0.6.1"
4343
hooks:
4444
- id: tox-ini-fmt
4545
args: [ "-p", "fix" ]
4646
- repo: https://github.com/asottile/setup-cfg-fmt
47-
rev: v2.0.0
47+
rev: v2.2.0
4848
hooks:
4949
- id: setup-cfg-fmt
5050
args: [ --min-py3-version, "3.7", "--max-py-version", "3.10" ]
5151
- repo: https://github.com/PyCQA/flake8
52-
rev: 5.0.3
52+
rev: 6.0.0
5353
hooks:
5454
- id: flake8
5555
additional_dependencies:
56-
- flake8-bugbear==22.10.27
56+
- flake8-bugbear==23.1.20
5757
- flake8-comprehensions==3.10.1
5858
- flake8-pytest-style==1.6
5959
- flake8-spellcheck==0.28
60-
- flake8-unused-arguments==0.0.12
61-
- flake8-noqa==1.2.9
62-
- pep8-naming==0.13.2
60+
- flake8-unused-arguments==0.0.13
61+
- flake8-noqa==1.3
62+
- pep8-naming==0.13.3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=65.5", "setuptools_scm>=7.0.5"]
2+
requires = ["setuptools>=67.1", "setuptools_scm>=7.1"]
33
build-backend = 'setuptools.build_meta'
44

55
[tool.black]

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ project_urls =
3131
[options]
3232
packages = find:
3333
install_requires =
34-
pytest>=7.2
34+
pytest>=7.2.1
3535
python_requires = >=3.7
3636
include_package_data = True
3737
package_dir =
@@ -46,7 +46,7 @@ pytest11 = pytest_print = pytest_print
4646

4747
[options.extras_require]
4848
test =
49-
coverage>=6.5
49+
coverage>=7.1
5050

5151
[options.package_data]
5252
pytest_print = py.typed

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ passenv =
4242
PROGRAMDATA
4343
skip_install = true
4444
deps =
45-
pre-commit>=2.20
45+
pre-commit>=3.0.4
4646
commands =
4747
pre-commit run --all-files --show-diff-on-failure
4848

@@ -51,7 +51,7 @@ description = run type check on code base
5151
setenv =
5252
{tty:MYPY_FORCE_COLOR = 1}
5353
deps =
54-
mypy==0.982
54+
mypy==0.991
5555
commands =
5656
mypy src/pytest_print
5757
mypy tests
@@ -60,8 +60,8 @@ commands =
6060
description = check that the long description is valid
6161
skip_install = true
6262
deps =
63-
build[virtualenv]>=0.9
64-
twine>=4.0.1
63+
build[virtualenv]>=0.10
64+
twine>=4.0.2
6565
changedir = {toxinidir}
6666
commands =
6767
python -m build -s -w . -o {envtmpdir}

0 commit comments

Comments
 (0)