Bump deps and tools (#192)

Committed via https://github.com/asottile/all-repos
This commit is contained in:
Bernát Gábor 2023-02-05 19:13:17 -08:00 committed by GitHub
parent c5d9e7a1d6
commit 0030704242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 22 deletions

View File

@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-ast
- id: check-builtin-literals
@ -12,43 +12,43 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
rev: v3.1.0
rev: v3.3.1
hooks:
- id: pyupgrade
args: ["--py37-plus"]
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.1.0
hooks:
- id: black
args: [--safe]
- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
rev: 1.13.0
hooks:
- id: blacken-docs
additional_dependencies: [black==22.10]
additional_dependencies: [black==23.1]
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: "0.5.2"
rev: "0.6.1"
hooks:
- id: tox-ini-fmt
args: ["-p", "fix"]
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 6.0.0
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==22.10.27
- flake8-bugbear==23.1.20
- flake8-comprehensions==3.10.1
- flake8-pytest-style==1.6
- flake8-spellcheck==0.28
- flake8-unused-arguments==0.0.12
- flake8-noqa==1.2.9
- pep8-naming==0.13.2
- flake8-unused-arguments==0.0.13
- flake8-noqa==1.3
- pep8-naming==0.13.3
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.0-alpha.3"
rev: "v2.7.1"
hooks:
- id: prettier
additional_dependencies:

View File

@ -1,6 +1,6 @@
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.11.1", "hatch-vcs>=0.2"]
requires = ["hatchling>=1.12.2", "hatch-vcs>=0.3"]
[project]
name = "pipdeptree"
@ -17,13 +17,13 @@ urls.Source = "https://github.com/tox-dev/pipdeptree"
urls.Tracker = "https://github.com/tox-dev/pipdeptree/issues"
requires-python = ">=3.7"
optional-dependencies.test = [
"covdefaults>=2.2",
"diff-cover>=7.0.1",
"pip>=22.3",
"pytest>=7.2",
"covdefaults>=2.2.2",
"diff-cover>=7.4",
"pip>=23",
"pytest>=7.2.1",
"pytest-cov>=4",
"pytest-mock>=3.10",
"virtualenv<21,>=20.16.6",
"virtualenv<21,>=20.17.1",
]
optional-dependencies.graphviz = [
"graphviz>=0.20.1",

View File

@ -34,7 +34,7 @@ wheel_build_env = .pkg
description = format the code base to adhere to our styles, and complain about what we cannot do automatically
skip_install = true
deps =
pre-commit>=2.20
pre-commit>=3.0.4
commands =
pre-commit run --all-files --show-diff-on-failure
@ -43,8 +43,8 @@ description = check that the long description is valid
basepython = python3.10
skip_install = true
deps =
build[virtualenv]>=0.9
twine>=4.0.1
build[virtualenv]>=0.10
twine>=4.0.2
commands =
python -m build --sdist --wheel -o {envtmpdir} .
twine check {envtmpdir}/*