Skip to content

Commit 9571c31

Browse files
authored
chore: Update dev deps specifiers (#535)
- Switch from tilde version constraints to using only an upper major version bound. Since the lockfile already pins exact versions, the tilde constraint is unnecessary and causes frequent (and unnecessary) Renovate PRs. - Use major-only upper-bound version specifiers for most development dependencies. - Keep the tilde specifier for Ruff and Mypy, since even minor updates can—and often do—break CI.
1 parent 7cc0460 commit 9571c31

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ dependencies = [
4242

4343
[dependency-groups]
4444
dev = [
45-
"dycw-pytest-only~=2.1.0",
45+
"dycw-pytest-only<3.0.0",
4646
"griffe",
47-
"mypy~=1.18.1",
48-
"pre-commit~=4.3.0",
49-
"pydoc-markdown~=4.8.0",
50-
"pytest-asyncio~=1.2.0",
51-
"pytest-cov~=7.0.0",
52-
"pytest-timeout~=2.4.0",
53-
"pytest-xdist~=3.8.0",
54-
"pytest~=8.4.0",
55-
"pytest-httpserver~=1.1.0",
56-
"redbaron~=0.9.0",
47+
"mypy~=1.18.0",
48+
"pre-commit<5.0.0",
49+
"pydoc-markdown<5.0.0",
50+
"pytest-asyncio<2.0.0",
51+
"pytest-cov<8.0.0",
52+
"pytest-timeout<3.0.0",
53+
"pytest-xdist<4.0.0",
54+
"pytest<9.0.0",
55+
"pytest-httpserver<2.0.0",
56+
"redbaron<1.0.0",
5757
"ruff~=0.14.0",
5858
"setuptools", # setuptools are used by pytest but not explicitly required
59-
"types-colorama~=0.4.15.20240106",
60-
"werkzeug~=3.1.0", # Werkzeug is used by pytest-httpserver
59+
"types-colorama<0.5.0",
60+
"werkzeug<4.0.0", # Werkzeug is used by pytest-httpserver
6161
]
6262

6363
[tool.hatch.build.targets.wheel]

uv.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)