Skip to content

Commit dc2a10c

Browse files
upath: update flavour sources (#467)
* build(deps-dev): bump the pip-dependencies group with 5 updates Bumps the pip-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [s3fs](https://github.com/fsspec/s3fs) | `2025.9.0` | `2025.10.0` | | [gcsfs](https://github.com/fsspec/gcsfs) | `2025.9.0` | `2025.10.0` | | [fsspec[dask,git,hdfs,http,sftp,smb]](https://github.com/fsspec/filesystem_spec) | `2025.9.0` | `2025.10.0` | | [ocifs](https://github.com/oracle/ocifs) | `1.3.2` | `1.3.4` | | [huggingface-hub](https://github.com/huggingface/huggingface_hub) | `0.35.3` | `1.1.2` | Updates `s3fs` from 2025.9.0 to 2025.10.0 - [Changelog](https://github.com/fsspec/s3fs/blob/main/release-procedure.md) - [Commits](fsspec/s3fs@2025.9.0...2025.10.0) Updates `gcsfs` from 2025.9.0 to 2025.10.0 - [Commits](fsspec/gcsfs@2025.9.0...2025.10.0) Updates `fsspec[dask,git,hdfs,http,sftp,smb]` from 2025.9.0 to 2025.10.0 - [Commits](fsspec/filesystem_spec@2025.9.0...2025.10.0) Updates `ocifs` from 1.3.2 to 1.3.4 - [Release notes](https://github.com/oracle/ocifs/releases) - [Commits](https://github.com/oracle/ocifs/commits) Updates `huggingface-hub` from 0.35.3 to 1.1.2 - [Release notes](https://github.com/huggingface/huggingface_hub/releases) - [Commits](huggingface/huggingface_hub@v0.35.3...v1.1.2) --- updated-dependencies: - dependency-name: s3fs dependency-version: 2025.10.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-dependencies - dependency-name: gcsfs dependency-version: 2025.10.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-dependencies - dependency-name: fsspec[dask,git,hdfs,http,sftp,smb] dependency-version: 2025.10.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-dependencies - dependency-name: ocifs dependency-version: 1.3.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: pip-dependencies - dependency-name: huggingface-hub dependency-version: 1.1.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: pip-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Auto-update generated flavours --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b24a4ac commit dc2a10c

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

dev/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
fsspec[git,hdfs,dask,http,sftp,smb]==2025.9.0
1+
fsspec[git,hdfs,dask,http,sftp,smb]==2025.10.0
22

33
# these dependencies define their own filesystems
44
adlfs==2025.8.0
55
boxfs==0.3.0
66
dropboxdrivefs==1.4.1
7-
gcsfs==2025.9.0
8-
s3fs==2025.9.0
9-
ocifs==1.3.2
7+
gcsfs==2025.10.0
8+
s3fs==2025.10.0
9+
ocifs==1.3.4
1010
webdav4[fsspec]==0.10.0
1111
# gfrivefs @ git+https://github.com/fsspec/gdrivefs@master broken ...
1212
morefs[asynclocalfs]==0.2.2
1313
dvc==3.63.0
14-
huggingface_hub==0.35.3
14+
huggingface_hub==1.1.2
1515
lakefs-spec==0.12.0
1616
ossfs==2025.5.0
1717
fsspec-xrootd==0.5.1

upath/_flavour_sources.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __init_subclass__(cls: Any, **kwargs):
8989

9090
class AbstractFileSystemFlavour(FileSystemFlavourBase):
9191
__orig_class__ = 'fsspec.spec.AbstractFileSystem'
92-
__orig_version__ = '2025.9.0'
92+
__orig_version__ = '2025.10.0'
9393
protocol: str | tuple[str, ...] = 'abstract'
9494
root_marker: Literal['', '/'] = ''
9595
sep: Literal['/'] = '/'
@@ -138,7 +138,7 @@ def _parent(cls, path):
138138

139139
class AsyncFileSystemWrapperFlavour(AbstractFileSystemFlavour):
140140
__orig_class__ = 'fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper'
141-
__orig_version__ = '2025.9.0'
141+
__orig_version__ = '2025.10.0'
142142
protocol = ('asyncwrapper', 'async_wrapper')
143143
root_marker = ''
144144
sep = '/'
@@ -322,7 +322,7 @@ def _strip_protocol(cls, path) -> str:
322322

323323
class DaskWorkerFileSystemFlavour(AbstractFileSystemFlavour):
324324
__orig_class__ = 'fsspec.implementations.dask.DaskWorkerFileSystem'
325-
__orig_version__ = '2025.9.0'
325+
__orig_version__ = '2025.10.0'
326326
protocol = ('dask',)
327327
root_marker = ''
328328
sep = '/'
@@ -338,15 +338,15 @@ def _get_kwargs_from_urls(path):
338338

339339
class DataFileSystemFlavour(AbstractFileSystemFlavour):
340340
__orig_class__ = 'fsspec.implementations.data.DataFileSystem'
341-
__orig_version__ = '2025.9.0'
341+
__orig_version__ = '2025.10.0'
342342
protocol = ('data',)
343343
root_marker = ''
344344
sep = '/'
345345

346346

347347
class DatabricksFileSystemFlavour(AbstractFileSystemFlavour):
348348
__orig_class__ = 'fsspec.implementations.dbfs.DatabricksFileSystem'
349-
__orig_version__ = '2025.9.0'
349+
__orig_version__ = '2025.10.0'
350350
protocol = ('dbfs',)
351351
root_marker = ''
352352
sep = '/'
@@ -379,7 +379,7 @@ class DropboxDriveFileSystemFlavour(AbstractFileSystemFlavour):
379379

380380
class FTPFileSystemFlavour(AbstractFileSystemFlavour):
381381
__orig_class__ = 'fsspec.implementations.ftp.FTPFileSystem'
382-
__orig_version__ = '2025.9.0'
382+
__orig_version__ = '2025.10.0'
383383
protocol = ('ftp',)
384384
root_marker = '/'
385385
sep = '/'
@@ -398,7 +398,7 @@ def _get_kwargs_from_urls(urlpath):
398398

399399
class GCSFileSystemFlavour(AbstractFileSystemFlavour):
400400
__orig_class__ = 'gcsfs.core.GCSFileSystem'
401-
__orig_version__ = '2025.9.0'
401+
__orig_version__ = '2025.10.0'
402402
protocol = ('gs', 'gcs')
403403
root_marker = ''
404404
sep = '/'
@@ -475,7 +475,7 @@ def _split_path(cls, path, version_aware=False):
475475

476476
class GistFileSystemFlavour(AbstractFileSystemFlavour):
477477
__orig_class__ = 'fsspec.implementations.gist.GistFileSystem'
478-
__orig_version__ = '2025.9.0'
478+
__orig_version__ = '2025.10.0'
479479
protocol = ('gist',)
480480
root_marker = ''
481481
sep = '/'
@@ -523,7 +523,7 @@ def _get_kwargs_from_urls(path):
523523

524524
class GitFileSystemFlavour(AbstractFileSystemFlavour):
525525
__orig_class__ = 'fsspec.implementations.git.GitFileSystem'
526-
__orig_version__ = '2025.9.0'
526+
__orig_version__ = '2025.10.0'
527527
protocol = ('git',)
528528
root_marker = ''
529529
sep = '/'
@@ -550,7 +550,7 @@ def _get_kwargs_from_urls(path):
550550

551551
class GithubFileSystemFlavour(AbstractFileSystemFlavour):
552552
__orig_class__ = 'fsspec.implementations.github.GithubFileSystem'
553-
__orig_version__ = '2025.9.0'
553+
__orig_version__ = '2025.10.0'
554554
protocol = ('github',)
555555
root_marker = ''
556556
sep = '/'
@@ -575,7 +575,7 @@ def _get_kwargs_from_urls(path):
575575

576576
class HTTPFileSystemFlavour(AbstractFileSystemFlavour):
577577
__orig_class__ = 'fsspec.implementations.http.HTTPFileSystem'
578-
__orig_version__ = '2025.9.0'
578+
__orig_version__ = '2025.10.0'
579579
protocol = ('http', 'https')
580580
root_marker = ''
581581
sep = '/'
@@ -596,7 +596,7 @@ def _parent(cls, path):
596596

597597
class HadoopFileSystemFlavour(AbstractFileSystemFlavour):
598598
__orig_class__ = 'fsspec.implementations.arrow.HadoopFileSystem'
599-
__orig_version__ = '2025.9.0'
599+
__orig_version__ = '2025.10.0'
600600
protocol = ('hdfs', 'arrow_hdfs')
601601
root_marker = '/'
602602
sep = '/'
@@ -629,15 +629,15 @@ def _get_kwargs_from_urls(path):
629629

630630
class HfFileSystemFlavour(AbstractFileSystemFlavour):
631631
__orig_class__ = 'huggingface_hub.hf_file_system.HfFileSystem'
632-
__orig_version__ = '0.35.3'
632+
__orig_version__ = '1.1.2'
633633
protocol = ('hf',)
634634
root_marker = ''
635635
sep = '/'
636636

637637

638638
class JupyterFileSystemFlavour(AbstractFileSystemFlavour):
639639
__orig_class__ = 'fsspec.implementations.jupyter.JupyterFileSystem'
640-
__orig_version__ = '2025.9.0'
640+
__orig_version__ = '2025.10.0'
641641
protocol = ('jupyter', 'jlab')
642642
root_marker = ''
643643
sep = '/'
@@ -663,7 +663,7 @@ def _strip_protocol(cls, path):
663663

664664
class LibArchiveFileSystemFlavour(AbstractFileSystemFlavour):
665665
__orig_class__ = 'fsspec.implementations.libarchive.LibArchiveFileSystem'
666-
__orig_version__ = '2025.9.0'
666+
__orig_version__ = '2025.10.0'
667667
protocol = ('libarchive',)
668668
root_marker = ''
669669
sep = '/'
@@ -676,7 +676,7 @@ def _strip_protocol(cls, path):
676676

677677
class LocalFileSystemFlavour(AbstractFileSystemFlavour):
678678
__orig_class__ = 'fsspec.implementations.local.LocalFileSystem'
679-
__orig_version__ = '2025.9.0'
679+
__orig_version__ = '2025.10.0'
680680
protocol = ('file', 'local')
681681
root_marker = '/'
682682
sep = '/'
@@ -754,7 +754,7 @@ def _strip_protocol(cls, path):
754754

755755
class MemoryFileSystemFlavour(AbstractFileSystemFlavour):
756756
__orig_class__ = 'fsspec.implementations.memory.MemoryFileSystem'
757-
__orig_version__ = '2025.9.0'
757+
__orig_version__ = '2025.10.0'
758758
protocol = ('memory',)
759759
root_marker = '/'
760760
sep = '/'
@@ -776,7 +776,7 @@ def _strip_protocol(cls, path):
776776

777777
class OCIFileSystemFlavour(AbstractFileSystemFlavour):
778778
__orig_class__ = 'ocifs.core.OCIFileSystem'
779-
__orig_version__ = '1.3.2'
779+
__orig_version__ = '1.3.4'
780780
protocol = ('oci', 'ocilake')
781781
root_marker = ''
782782
sep = '/'
@@ -852,15 +852,15 @@ class OverlayFileSystemFlavour(AbstractFileSystemFlavour):
852852

853853
class ReferenceFileSystemFlavour(AbstractFileSystemFlavour):
854854
__orig_class__ = 'fsspec.implementations.reference.ReferenceFileSystem'
855-
__orig_version__ = '2025.9.0'
855+
__orig_version__ = '2025.10.0'
856856
protocol = ('reference',)
857857
root_marker = ''
858858
sep = '/'
859859

860860

861861
class S3FileSystemFlavour(AbstractFileSystemFlavour):
862862
__orig_class__ = 's3fs.core.S3FileSystem'
863-
__orig_version__ = '2025.9.0'
863+
__orig_version__ = '2025.10.0'
864864
protocol = ('s3', 's3a')
865865
root_marker = ''
866866
sep = '/'
@@ -888,7 +888,7 @@ def _get_kwargs_from_urls(urlpath):
888888

889889
class SFTPFileSystemFlavour(AbstractFileSystemFlavour):
890890
__orig_class__ = 'fsspec.implementations.sftp.SFTPFileSystem'
891-
__orig_version__ = '2025.9.0'
891+
__orig_version__ = '2025.10.0'
892892
protocol = ('sftp', 'ssh')
893893
root_marker = ''
894894
sep = '/'
@@ -907,7 +907,7 @@ def _get_kwargs_from_urls(urlpath):
907907

908908
class SMBFileSystemFlavour(AbstractFileSystemFlavour):
909909
__orig_class__ = 'fsspec.implementations.smb.SMBFileSystem'
910-
__orig_version__ = '2025.9.0'
910+
__orig_version__ = '2025.10.0'
911911
protocol = ('smb',)
912912
root_marker = ''
913913
sep = '/'
@@ -927,7 +927,7 @@ def _get_kwargs_from_urls(path):
927927

928928
class SimpleCacheFileSystemFlavour(AbstractFileSystemFlavour):
929929
__orig_class__ = 'fsspec.implementations.cached.SimpleCacheFileSystem'
930-
__orig_version__ = '2025.9.0'
930+
__orig_version__ = '2025.10.0'
931931
protocol = ('simplecache',)
932932
root_marker = ''
933933
sep = '/'
@@ -936,7 +936,7 @@ class SimpleCacheFileSystemFlavour(AbstractFileSystemFlavour):
936936

937937
class TarFileSystemFlavour(AbstractFileSystemFlavour):
938938
__orig_class__ = 'fsspec.implementations.tar.TarFileSystem'
939-
__orig_version__ = '2025.9.0'
939+
__orig_version__ = '2025.10.0'
940940
protocol = ('tar',)
941941
root_marker = ''
942942
sep = '/'
@@ -952,7 +952,7 @@ class WandbFSFlavour(AbstractFileSystemFlavour):
952952

953953
class WebHDFSFlavour(AbstractFileSystemFlavour):
954954
__orig_class__ = 'fsspec.implementations.webhdfs.WebHDFS'
955-
__orig_version__ = '2025.9.0'
955+
__orig_version__ = '2025.10.0'
956956
protocol = ('webhdfs', 'webHDFS')
957957
root_marker = ''
958958
sep = '/'
@@ -1013,7 +1013,7 @@ def _get_kwargs_from_urls(u: str) -> dict[Any, Any]:
10131013

10141014
class ZipFileSystemFlavour(AbstractFileSystemFlavour):
10151015
__orig_class__ = 'fsspec.implementations.zip.ZipFileSystem'
1016-
__orig_version__ = '2025.9.0'
1016+
__orig_version__ = '2025.10.0'
10171017
protocol = ('zip',)
10181018
root_marker = ''
10191019
sep = '/'

0 commit comments

Comments
 (0)