Skip to content

Commit e4d8436

Browse files
authored
chore: Update dev deps specifiers (#671)
- 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 88e6ba3 commit e4d8436

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
@@ -62,24 +62,24 @@ scrapy = ["scrapy>=2.11.0"]
6262

6363
[dependency-groups]
6464
dev = [
65-
"build~=1.3.0",
65+
"build<2.0.0",
6666
"crawlee[parsel]",
67-
"dycw-pytest-only~=2.1.0",
67+
"dycw-pytest-only<3.0.0",
6868
"griffe",
69-
"mypy~=1.18.1",
70-
"pre-commit~=4.4.0",
71-
"pydoc-markdown~=4.8.0",
72-
"pytest-asyncio~=1.2.0",
73-
"pytest-cov~=7.0.0",
74-
"pytest-httpserver~=1.1.0",
75-
"pytest-timeout~=2.4.0",
76-
"pytest-xdist~=3.8.0",
77-
"pytest~=8.4.0",
69+
"mypy~=1.18.0",
70+
"pre-commit<5.0.0",
71+
"pydoc-markdown<5.0.0",
72+
"pytest-asyncio<2.0.0",
73+
"pytest-cov<8.0.0",
74+
"pytest-httpserver<2.0.0",
75+
"pytest-timeout<3.0.0",
76+
"pytest-xdist<4.0.0",
77+
"pytest<9.0.0",
7878
"ruff~=0.14.0",
7979
"setuptools", # setuptools are used by pytest but not explicitly required
80-
"types-cachetools~=6.2.0.20250827",
80+
"types-cachetools<7.0.0",
8181
"uvicorn[standard]",
82-
"werkzeug~=3.1.0", # Werkzeug is used by httpserver
82+
"werkzeug<4.0.0", # Werkzeug is used by httpserver
8383
]
8484

8585
[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)