Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
deependujha committed Sep 5, 2024
1 parent 2beebc9 commit dd2e742
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ numpy
# boto3
requests
fsspec
fsspec[s3] # aws s3
1 change: 0 additions & 1 deletion requirements/extras.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ pyarrow
tqdm
lightning-cloud == 0.5.70 # Must be pinned to ensure compatibility
google-cloud-storage
fsspec[s3] # aws s3
fsspec[gs] # google cloud storage
fsspec[abfs] # azure blob
3 changes: 2 additions & 1 deletion tests/processing/test_data_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import pytest
import torch
from lightning_utilities.core.imports import RequirementCache

from litdata.constants import _TORCH_AUDIO_AVAILABLE, _ZSTD_AVAILABLE
from litdata.processing import data_processor as data_processor_module
from litdata.processing import functions
Expand Down Expand Up @@ -111,7 +112,7 @@ def fn(*_, **__):

called = False

def copy_file(local_filepath, *args):
def copy_file(local_filepath, *args, **kwargs):
nonlocal called
called = True
from shutil import copyfile
Expand Down

0 comments on commit dd2e742

Please sign in to comment.