Skip to content

Commit 94801d1

Browse files
committed
upath: update to newest flavours
1 parent 0e18df1 commit 94801d1

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

dev/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ boxfs==0.3.0
66
dropboxdrivefs==1.4.1
77
gcsfs==2025.3.2
88
s3fs==2025.3.2
9-
ocifs==1.3.1
9+
ocifs==1.3.2
1010
webdav4[fsspec]==0.10.0
1111
# gfrivefs @ git+https://github.com/fsspec/gdrivefs@master broken ...
1212
morefs[asynclocalfs]==0.2.2
13-
dvc==3.58.0
14-
huggingface_hub==0.29.2
15-
lakefs-spec==0.11.0
13+
dvc==3.59.1
14+
huggingface_hub==0.30.2
15+
lakefs-spec==0.11.3
1616
ossfs==2023.12.0
17-
fsspec-xrootd==0.4.0
17+
fsspec-xrootd==0.5.1
1818
wandbfs==0.0.2

upath/_flavour_sources.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def _get_kwargs_from_urls(path):
574574

575575
class HfFileSystemFlavour(AbstractFileSystemFlavour):
576576
__orig_class__ = 'huggingface_hub.hf_file_system.HfFileSystem'
577-
__orig_version__ = '0.29.2'
577+
__orig_version__ = '0.30.2'
578578
protocol = ('hf',)
579579
root_marker = ''
580580
sep = '/'
@@ -590,7 +590,7 @@ class JupyterFileSystemFlavour(AbstractFileSystemFlavour):
590590

591591
class LakeFSFileSystemFlavour(AbstractFileSystemFlavour):
592592
__orig_class__ = 'lakefs_spec.spec.LakeFSFileSystem'
593-
__orig_version__ = '0.11.0'
593+
__orig_version__ = '0.11.3'
594594
protocol = ('lakefs',)
595595
root_marker = ''
596596
sep = '/'
@@ -722,7 +722,7 @@ def _strip_protocol(cls, path):
722722

723723
class OCIFileSystemFlavour(AbstractFileSystemFlavour):
724724
__orig_class__ = 'ocifs.core.OCIFileSystem'
725-
__orig_version__ = '1.3.1'
725+
__orig_version__ = '1.3.2'
726726
protocol = ('oci', 'ocilake')
727727
root_marker = ''
728728
sep = '/'
@@ -924,7 +924,7 @@ def _strip_protocol(cls, path: str) -> str:
924924

925925
class XRootDFileSystemFlavour(AbstractFileSystemFlavour):
926926
__orig_class__ = 'fsspec_xrootd.xrootd.XRootDFileSystem'
927-
__orig_version__ = '0.4.0'
927+
__orig_version__ = '0.5.1'
928928
protocol = ('root',)
929929
root_marker = '/'
930930
sep = '/'
@@ -963,7 +963,7 @@ def _strip_protocol(cls, path):
963963

964964
class _DVCFileSystemFlavour(AbstractFileSystemFlavour):
965965
__orig_class__ = 'dvc.fs.dvc._DVCFileSystem'
966-
__orig_version__ = '3.58.0'
966+
__orig_version__ = '3.59.1'
967967
protocol = ('dvc',)
968968
root_marker = '/'
969969
sep = '/'

0 commit comments

Comments
 (0)