Skip to content

Commit 02f4197

Browse files
authored
Bump deps and tools (#60)
Committed via https://github.com/asottile/all-repos
1 parent 016460f commit 02f4197

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
@@ -39,7 +39,7 @@ repos:
3939
hooks:
4040
- id: rst-backticks
4141
- repo: https://github.com/tox-dev/tox-ini-fmt
42-
rev: "1.0.0"
42+
rev: "1.3.0"
4343
hooks:
4444
- id: tox-ini-fmt
4545
args: [ "-p", "fix" ]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pytest11 = pytest_print = pytest_print
4646

4747
[options.extras_require]
4848
test =
49-
coverage>=7.2.2
49+
coverage>=7.2.3
5050

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

tox.ini

Lines changed: 11 additions & 11 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
py310
67
py39
@@ -10,7 +11,6 @@ envlist =
1011
pypy3
1112
type
1213
readme
13-
isolated_build = true
1414
skip_missing_interpreters = true
1515

1616
[testenv]
@@ -19,9 +19,9 @@ package = wheel
1919
wheel_build_env = .pkg
2020
extras =
2121
test
22-
passenv =
22+
pass_env =
2323
SSL_CERT_FILE
24-
setenv =
24+
set_env =
2525
COVERAGE_FILE = {env:COVERAGE_FILE:{toxworkdir}{/}.coverage.{envname}}
2626
_COVERAGE_SRC = {envsitepackagesdir}{/}pytest_print
2727
_COVERAGE_TEST = {toxinidir}{/}tests
@@ -38,8 +38,8 @@ commands =
3838
description = run static analysis and style check using flake8
3939
skip_install = true
4040
deps =
41-
pre-commit>=3.2.1
42-
passenv =
41+
pre-commit>=3.2.2
42+
pass_env =
4343
{[testenv]passenv}
4444
HOMEPATH
4545
PROGRAMDATA
@@ -49,8 +49,8 @@ commands =
4949
[testenv:type]
5050
description = run type check on code base
5151
deps =
52-
mypy==1.1.1
53-
setenv =
52+
mypy==1.2
53+
set_env =
5454
{tty:MYPY_FORCE_COLOR = 1}
5555
commands =
5656
mypy src/pytest_print
@@ -62,14 +62,14 @@ skip_install = true
6262
deps =
6363
build[virtualenv]>=0.10
6464
twine>=4.0.2
65-
changedir = {toxinidir}
65+
change_dir = {toxinidir}
6666
commands =
6767
python -m build -s -w . -o {envtmpdir}
6868
twine check {envtmpdir}/*
6969

7070
[testenv:dev]
7171
description = generate a DEV environment
72-
usedevelop = true
72+
package = editable
7373
extras =
7474
test
7575
commands =

0 commit comments

Comments
 (0)