Skip to content

Commit 390ccaf

Browse files
vdusekclaude
andauthored
chore: update dependencies in lock file (#860)
Update all dependencies in `uv.lock` to their latest versions via `uv lock --upgrade`. Renovate is currently disabled, so dependency updates need to be done manually. --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 71d83b5 commit 390ccaf

File tree

4 files changed

+570
-578
lines changed

4 files changed

+570
-578
lines changed

docs/02_concepts/code/04_use_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async def main() -> None:
1414
Actor.log.info(f'Resuming from item {start_index}')
1515

1616
# Do some work and update the state — it is persisted automatically
17-
for i in range(start_index, 100): # type: ignore[arg-type]
17+
for i in range(start_index, 100): # ty: ignore[invalid-argument-type]
1818
Actor.log.info(f'Processing item {i}...')
1919
state['processed_items'] = i + 1
2020
await asyncio.sleep(0.1)

tests/integration/test_request_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ async def test_request_deduplication_edge_cases(
723723
"""Test edge cases in request deduplication."""
724724
rq_access_mode = request.node.callspec.params.get('request_queue_apify')
725725
if rq_access_mode == 'shared':
726-
pytest.skip(reason='Test is flaky, see https://github.com/apify/apify-sdk-python/issues/786') # ty: ignore[invalid-argument-type, parameter-already-assigned]
726+
pytest.skip(reason='Test is flaky, see https://github.com/apify/apify-sdk-python/issues/786')
727727

728728
rq = request_queue_apify
729729
Actor.log.info('Request queue opened')

tests/unit/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ def test_ipython_detection_when_active() -> None:
1414

1515
original = getattr(builtins, '__IPYTHON__', None)
1616
try:
17-
builtins.__IPYTHON__ = True # type: ignore[attr-defined]
17+
builtins.__IPYTHON__ = True # ty: ignore[unresolved-attribute]
1818
assert is_running_in_ipython() is True
1919
finally:
2020
if original is None:
2121
if hasattr(builtins, '__IPYTHON__'):
2222
del builtins.__IPYTHON__
2323
else:
24-
builtins.__IPYTHON__ = original # type: ignore[attr-defined]
24+
builtins.__IPYTHON__ = original # ty: ignore[unresolved-attribute]
2525

2626

2727
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)