Skip to content

Commit b330b16

Browse files
authored
upath: update flavours (#272)
1 parent b44bac3 commit b330b16

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

dev/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ ocifs==1.3.1
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.53.1
14-
huggingface_hub==0.23.5
13+
dvc==3.55.1
14+
huggingface_hub==0.24.6
1515
lakefs-spec==0.10.0
1616
ossfs==2023.12.0
1717
fsspec-xrootd==0.3.0

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,6 @@ def typesafety(session):
111111
def generate_flavours(session):
112112
session.install("-r", "dev/requirements.txt")
113113
with open("upath/_flavour_sources.py", "w") as target:
114-
session.run("python", "dev/generate_flavours.py", stdout=target)
114+
session.run(
115+
"python", "dev/fsspec_inspector/generate_flavours.py", stdout=target
116+
)

upath/_flavour_sources.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ def _get_kwargs_from_urls(path):
571571

572572
class HfFileSystemFlavour(AbstractFileSystemFlavour):
573573
__orig_class__ = 'huggingface_hub.hf_file_system.HfFileSystem'
574-
__orig_version__ = '0.23.5'
574+
__orig_version__ = '0.24.6'
575575
protocol = ('hf',)
576576
root_marker = ''
577577
sep = '/'
@@ -958,7 +958,7 @@ def _strip_protocol(cls, path):
958958

959959
class _DVCFileSystemFlavour(AbstractFileSystemFlavour):
960960
__orig_class__ = 'dvc.fs.dvc._DVCFileSystem'
961-
__orig_version__ = '3.53.1'
961+
__orig_version__ = '3.55.1'
962962
protocol = ('dvc',)
963963
root_marker = '/'
964964
sep = '/'

0 commit comments

Comments
 (0)