Skip to content

Commit

Permalink
Bump deps and tools
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Mar 21, 2023
1 parent 6dff088 commit 7659599
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ repos:
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==23.1.20
- flake8-comprehensions==3.10.1
- flake8-pytest-style==1.6
- flake8-bugbear==23.3.12
- flake8-comprehensions==3.11.1
- flake8-pytest-style==1.7.2
- flake8-spellcheck==0.28
- flake8-unused-arguments==0.0.13
- flake8-noqa==1.3
- flake8-noqa==1.3.1
- pep8-naming==0.13.3
- flake8-pyproject==1.2.2
- flake8-pyproject==1.2.3
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v2.7.1"
hooks:
Expand Down
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.3",
"hatchling>=1.12.2",
"hatchling>=1.13",
]

[project]
Expand Down Expand Up @@ -51,15 +51,15 @@ dependencies = [
"cachetools>=5.3",
"chardet>=5.1",
"colorama>=0.4.6",
"filelock>=3.9",
'importlib-metadata>=6; python_version < "3.8"',
"filelock>=3.10",
'importlib-metadata>=6.1; python_version < "3.8"',
"packaging>=23",
"platformdirs>=2.6.2",
"platformdirs>=3.1.1",
"pluggy>=1",
"pyproject-api>=1.5",
"pyproject-api>=1.5.1",
'tomli>=2.0.1; python_version < "3.11"',
'typing-extensions>=4.4; python_version < "3.8"',
"virtualenv>=20.17.1",
'typing-extensions>=4.5; python_version < "3.8"',
"virtualenv>=20.21",
]
optional-dependencies.docs = [
"furo>=2022.12.7",
Expand All @@ -73,21 +73,21 @@ optional-dependencies.docs = [
]
optional-dependencies.testing = [
"build[virtualenv]>=0.10",
"covdefaults>=2.2.2",
"covdefaults>=2.3",
"devpi-process>=0.3",
"diff-cover>=7.4",
"diff-cover>=7.5",
"distlib>=0.3.6",
"flaky>=3.7",
"hatch-vcs>=0.3",
"hatchling>=1.12.2",
"hatchling>=1.13",
"psutil>=5.9.4",
"pytest>=7.2.1",
"pytest>=7.2.2",
"pytest-cov>=4",
"pytest-mock>=3.10",
"pytest-xdist>=3.1",
"pytest-xdist>=3.2.1",
"re-assert>=1.1",
'time-machine>=2.9; implementation_name != "pypy"',
"wheel>=0.38.4",
"wheel>=0.40",
]
urls.Documentation = "https://tox.wiki"
urls.Homepage = "http://tox.readthedocs.org"
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ passenv =
PROGRAMDATA
skip_install = true
deps =
pre-commit>=2.21
pre-commit>=3.2
commands =
pre-commit run --all-files --show-diff-on-failure {posargs}
python -c 'print(r"hint: run {envbindir}{/}pre-commit install to add checks as pre-commit hook")'

[testenv:type]
description = run type check on code base
deps =
mypy==0.991
types-cachetools>=5.3
types-chardet>=5.0.4.1
mypy==1.1.1
types-cachetools>=5.3.0.4
types-chardet>=5.0.4.2
commands =
mypy src/tox
mypy tests
Expand Down Expand Up @@ -82,7 +82,7 @@ commands =
description = do a release, required posarg of the version number
skip_install = true
deps =
gitpython>=3.1.30
gitpython>=3.1.31
packaging>=23
towncrier>=22.12
commands =
Expand Down

0 comments on commit 7659599

Please sign in to comment.