Skip to content

Commit 8017730

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

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repos:
3535
hooks:
3636
- id: rst-backticks
3737
- repo: https://github.com/tox-dev/tox-ini-fmt
38-
rev: "1.0.0"
38+
rev: "1.3.0"
3939
hooks:
4040
- id: tox-ini-fmt
4141
args: [ "-p", "fix" ]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
build-backend = "hatchling.build"
33
requires = [
44
"hatch-vcs>=0.3",
5-
"hatchling>=1.13",
5+
"hatchling>=1.14",
66
]
77

88
[project]
@@ -34,7 +34,7 @@ dependencies = [
3434
"pytest>=7.2.2",
3535
]
3636
optional-dependencies.test = [
37-
"coverage>=7.2.2",
37+
"coverage>=7.2.3",
3838
"pytest-mock>=3.10",
3939
]
4040
urls.Homepage = "https://github.com/pytest-dev/pytest-env"

tox.ini

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[tox]
2-
minversion = 3.21
3-
envlist =
2+
requires =
3+
tox>=4.2
4+
env_list =
45
fix
56
py311
67
py310
@@ -9,7 +10,6 @@ envlist =
910
py37
1011
type
1112
readme
12-
isolated_build = true
1313
skip_missing_interpreters = true
1414

1515
[testenv]
@@ -18,7 +18,7 @@ package = wheel
1818
wheel_build_env = .pkg
1919
extras =
2020
test
21-
setenv =
21+
set_env =
2222
COVERAGE_FILE = {env:COVERAGE_FILE:{toxworkdir}{/}.coverage.{envname}}
2323
commands =
2424
coverage erase
@@ -33,8 +33,8 @@ commands =
3333
description = run static analysis and style check using flake8
3434
skip_install = true
3535
deps =
36-
pre-commit>=3.2.1
37-
passenv =
36+
pre-commit>=3.2.2
37+
pass_env =
3838
HOMEPATH
3939
PROGRAMDATA
4040
commands =
@@ -43,8 +43,8 @@ commands =
4343
[testenv:type]
4444
description = run type check on code base
4545
deps =
46-
mypy==1.1.1
47-
setenv =
46+
mypy==1.2
47+
set_env =
4848
{tty:MYPY_FORCE_COLOR = 1}
4949
commands =
5050
mypy --strict src
@@ -56,14 +56,14 @@ skip_install = true
5656
deps =
5757
build[virtualenv]>=0.10
5858
twine>=4.0.2
59-
changedir = {toxinidir}
59+
change_dir = {toxinidir}
6060
commands =
6161
python -m build -o {envtmpdir} .
6262
twine check {envtmpdir}/*
6363

6464
[testenv:dev]
6565
description = generate a DEV environment
66-
usedevelop = true
66+
package = editable
6767
extras =
6868
test
6969
commands =

0 commit comments

Comments
 (0)