Skip to content

Commit e4b1caa

Browse files
authored
chore: Bump crawlee versions (#610)
1 parent 104eb7f commit e4b1caa

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ keywords = [
3636
dependencies = [
3737
"apify-client>=2.0.0,<3.0.0",
3838
"apify-shared>=2.0.0,<3.0.0",
39-
"crawlee==0.6.13b46",
39+
"crawlee>=1.0.0,<2.0.0",
4040
"cachetools>=5.5.0",
4141
"cryptography>=42.0.0",
4242
"impit>=0.6.1",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# The test fixture will put the Apify SDK wheel path on the next line
22
APIFY_SDK_WHEEL_PLACEHOLDER
33
uvicorn[standard]
4-
crawlee[parsel]==0.6.13b46
4+
crawlee[parsel]>=1.0.0,<2.0.0

tests/integration/test_actor_lifecycle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ async def main() -> None:
131131
from apify import Actor
132132

133133
async with Actor:
134-
crawler = BasicCrawler(concurrency_settings=ConcurrencySettings(max_concurrency=1))
134+
crawler = BasicCrawler(concurrency_settings=ConcurrencySettings(max_concurrency=1, desired_concurrency=1))
135135
requests = ['https://example.com/1', 'https://example.com/2']
136136

137137
run = await Actor.apify_client.run(Actor.configuration.actor_run_id or '').get()

tests/integration/test_crawlers_with_storages.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ async def main() -> None:
5656

5757
async with Actor:
5858
crawler = ParselCrawler(
59-
max_requests_per_crawl=3, concurrency_settings=ConcurrencySettings(max_concurrency=1)
59+
max_requests_per_crawl=3,
60+
concurrency_settings=ConcurrencySettings(max_concurrency=1, desired_concurrency=1),
6061
)
6162
finished = []
6263

uv.lock

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

0 commit comments

Comments
 (0)