Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ keywords = [
dependencies = [
"apify-client>=2.0.0,<3.0.0",
"apify-shared>=2.0.0,<3.0.0",
"crawlee==0.6.13b46",
"crawlee>=1.0.0,<2.0.0",
"cachetools>=5.5.0",
"cryptography>=42.0.0",
"impit>=0.6.1",
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/actor_source_base/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The test fixture will put the Apify SDK wheel path on the next line
APIFY_SDK_WHEEL_PLACEHOLDER
uvicorn[standard]
crawlee[parsel]==0.6.13b46
crawlee[parsel]>=1.0.0,<2.0.0
2 changes: 1 addition & 1 deletion tests/integration/test_actor_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ async def main() -> None:
from apify import Actor

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

run = await Actor.apify_client.run(Actor.configuration.actor_run_id or '').get()
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/test_crawlers_with_storages.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ async def main() -> None:

async with Actor:
crawler = ParselCrawler(
max_requests_per_crawl=3, concurrency_settings=ConcurrencySettings(max_concurrency=1)
max_requests_per_crawl=3,
concurrency_settings=ConcurrencySettings(max_concurrency=1, desired_concurrency=1),
)
finished = []

Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading