From fb9361b03504e6241655bcbbf5a7765d71aade0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:03:28 +0000 Subject: [PATCH 1/2] build(deps-dev): bump the pip-dependencies group across 1 directory with 2 updates Bumps the pip-dependencies group with 2 updates in the / directory: [webdav4[fsspec]](https://github.com/skshetry/webdav4) and [huggingface-hub](https://github.com/huggingface/huggingface_hub). Updates `webdav4[fsspec]` from 0.10.0 to 0.11.0 - [Release notes](https://github.com/skshetry/webdav4/releases) - [Commits](https://github.com/skshetry/webdav4/compare/v0.10.0...v0.11.0) Updates `huggingface-hub` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/huggingface/huggingface_hub/releases) - [Commits](https://github.com/huggingface/huggingface_hub/compare/v1.4.1...v1.5.0) --- updated-dependencies: - dependency-name: webdav4[fsspec] dependency-version: 0.11.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-dependencies - dependency-name: huggingface-hub dependency-version: 1.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-dependencies ... Signed-off-by: dependabot[bot] --- dev/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/requirements.txt b/dev/requirements.txt index f5e00dc7..4de17850 100644 --- a/dev/requirements.txt +++ b/dev/requirements.txt @@ -7,11 +7,11 @@ dropboxdrivefs==1.4.1 gcsfs==2025.10.0 s3fs==2025.10.0 ocifs==1.3.4 -webdav4[fsspec]==0.10.0 +webdav4[fsspec]==0.11.0 # gfrivefs @ git+https://github.com/fsspec/gdrivefs@master broken ... morefs[asynclocalfs]==0.2.2 dvc==3.66.1 -huggingface_hub==1.4.1 +huggingface_hub==1.5.0 lakefs-spec==0.12.0 ossfs==2025.5.0 fsspec-xrootd==0.5.1 From 269b5d61121295a945b33fe687e0928848dfdda7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 2 Mar 2026 12:03:57 +0000 Subject: [PATCH 2/2] Auto-update generated flavours --- upath/_flavour_sources.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/upath/_flavour_sources.py b/upath/_flavour_sources.py index 63fb8a9f..5893b39f 100644 --- a/upath/_flavour_sources.py +++ b/upath/_flavour_sources.py @@ -630,7 +630,7 @@ def _get_kwargs_from_urls(path): class HfFileSystemFlavour(AbstractFileSystemFlavour): __orig_class__ = 'huggingface_hub.hf_file_system.HfFileSystem' - __orig_version__ = '1.4.1' + __orig_version__ = '1.5.0' protocol = ('hf',) root_marker = '' sep = '/' @@ -974,7 +974,7 @@ def _get_kwargs_from_urls(urlpath): class WebdavFileSystemFlavour(AbstractFileSystemFlavour): __orig_class__ = 'webdav4.fsspec.WebdavFileSystem' - __orig_version__ = '0.10.0' + __orig_version__ = '0.11.0' protocol = ('webdav', 'dav') root_marker = '' sep = '/' @@ -983,7 +983,7 @@ class WebdavFileSystemFlavour(AbstractFileSystemFlavour): def _strip_protocol(cls, path: str) -> str: """Strips protocol from the given path, overriding for type-casting.""" stripped = super()._strip_protocol(path) - return cast(str, stripped) + return cast("str", stripped) class XRootDFileSystemFlavour(AbstractFileSystemFlavour):