Skip to content

Commit bc6bc6a

Browse files
authored
Bump deps and tools (#2981)
1 parent 0290100 commit bc6bc6a

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343
hooks:
4444
- id: rst-backticks
4545
- repo: https://github.com/tox-dev/tox-ini-fmt
46-
rev: "1.0.0"
46+
rev: "1.3.0"
4747
hooks:
4848
- id: tox-ini-fmt
4949
args: ["-p", "fix"]

pyproject.toml

Lines changed: 4 additions & 4 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]
@@ -51,8 +51,8 @@ dependencies = [
5151
"cachetools>=5.3",
5252
"chardet>=5.1",
5353
"colorama>=0.4.6",
54-
"filelock>=3.10.7",
55-
'importlib-metadata>=6.1; python_version < "3.8"',
54+
"filelock>=3.11",
55+
'importlib-metadata>=6.2; python_version < "3.8"',
5656
"packaging>=23",
5757
"platformdirs>=3.2",
5858
"pluggy>=1",
@@ -79,7 +79,7 @@ optional-dependencies.testing = [
7979
"distlib>=0.3.6",
8080
"flaky>=3.7",
8181
"hatch-vcs>=0.3",
82-
"hatchling>=1.13",
82+
"hatchling>=1.14",
8383
"psutil>=5.9.4",
8484
"pytest>=7.2.2",
8585
"pytest-cov>=4",

tox.ini

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[tox]
2-
minversion = 3.22
3-
envlist =
2+
requires =
3+
tox>=4.2
4+
env_list =
45
fix
56
py311
67
py310
@@ -11,7 +12,6 @@ envlist =
1112
type
1213
docs
1314
pkg_meta
14-
isolated_build = true
1515
skip_missing_interpreters = true
1616

1717
[testenv]
@@ -20,10 +20,10 @@ package = wheel
2020
wheel_build_env = .pkg
2121
extras =
2222
testing
23-
passenv =
23+
pass_env =
2424
PYTEST_*
2525
SSL_CERT_FILE
26-
setenv =
26+
set_env =
2727
COVERAGE_FILE = {env:COVERAGE_FILE:{toxworkdir}{/}.coverage.{envname}}
2828
COVERAGE_PROCESS_START = {toxinidir}{/}pyproject.toml
2929
commands =
@@ -40,8 +40,8 @@ commands =
4040
description = format the code base to adhere to our styles, and complain about what we cannot do automatically
4141
skip_install = true
4242
deps =
43-
pre-commit>=3.2.1
44-
passenv =
43+
pre-commit>=3.2.2
44+
pass_env =
4545
{[testenv]passenv}
4646
PROGRAMDATA
4747
commands =
@@ -51,7 +51,7 @@ commands =
5151
[testenv:type]
5252
description = run type check on code base
5353
deps =
54-
mypy==1.1.1
54+
mypy==1.2
5555
types-cachetools>=5.3.0.5
5656
types-chardet>=5.0.4.3
5757
commands =
@@ -90,7 +90,7 @@ commands =
9090

9191
[testenv:dev]
9292
description = dev environment with all deps at {envdir}
93-
usedevelop = true
93+
package = editable
9494
deps =
9595
{[testenv:release]deps}
9696
extras =

0 commit comments

Comments
 (0)