Skip to content

Commit ae7c760

Browse files
authored
chore: Update dev deps specifiers (#1545)
- 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. - Updating Uvicorn to a newer version is currently blocked due to incompatibility, so staying with tilde there as well.
1 parent 3c7beae commit ae7c760

File tree

2 files changed

+33
-33
lines changed

2 files changed

+33
-33
lines changed

pyproject.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -96,24 +96,24 @@ crawlee = "crawlee._cli:cli"
9696
[dependency-groups]
9797
dev = [
9898
"apify_client", # For e2e tests.
99-
"build~=1.3.0", # For e2e tests.
100-
"dycw-pytest-only~=2.1.0",
101-
"mypy~=1.18.1",
102-
"pre-commit~=4.3.0",
103-
"proxy-py~=2.4.0",
104-
"pydoc-markdown~=4.8.0",
105-
"pytest-asyncio~=1.2.0",
106-
"pytest-cov~=7.0.0",
107-
"pytest-timeout~=2.4.0",
108-
"pytest-xdist~=3.8.0",
109-
"pytest~=8.4.0",
99+
"build<2.0.0", # For e2e tests.
100+
"dycw-pytest-only<3.0.0",
101+
"mypy~=1.18.0",
102+
"pre-commit<5.0.0",
103+
"proxy-py<3.0.0",
104+
"pydoc-markdown<5.0.0",
105+
"pytest-asyncio<2.0.0",
106+
"pytest-cov<8.0.0",
107+
"pytest-timeout<3.0.0",
108+
"pytest-xdist<4.0.0",
109+
"pytest<9.0.0",
110110
"ruff~=0.14.0",
111111
"setuptools", # setuptools are used by pytest, but not explicitly required
112-
"types-beautifulsoup4~=4.12.0.20240229",
113-
"types-cachetools~=6.2.0.20250827",
114-
"types-colorama~=0.4.15.20240106",
115-
"types-psutil~=7.0.0.20250218",
116-
"types-python-dateutil~=2.9.0.20240316",
112+
"types-beautifulsoup4<5.0.0",
113+
"types-cachetools<7.0.0",
114+
"types-colorama<1.0.0",
115+
"types-psutil<8.0.0",
116+
"types-python-dateutil<3.0.0",
117117
"uvicorn[standard]~=0.35.0", # https://github.com/apify/crawlee-python/issues/1441
118118
]
119119

uv.lock

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

0 commit comments

Comments
 (0)