Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

Updates the requirements on universal-pathlib to permit the latest version.

Release notes

Sourced from universal-pathlib's releases.

v0.3.4

What's Changed

Full Changelog: fsspec/universal_pathlib@v0.3.3...v0.3.4

Changelog

Sourced from universal-pathlib's changelog.

[0.3.4] - 2025-10-16

Added

  • upath.implementations: add SimpleCachePath for simplecache protocol support (#453)
  • upath: support JSON schema generation for Pydantic integration (#451)

Changed

  • upath: move pathlib-abc from 0.5.1 to >=0.5.1,<0.6.0 (#450)
  • upath.core: deprecate _protocol_dispatch=False parameter (#454)

[0.3.3] - 2025-10-08

Added

  • upath.implementations: add ZipPath for ZIP archive filesystem access (#442)
  • upath.implementations: add TarPath for TAR archive filesystem access (#443)
  • tests: add chained ZIP and TAR path tests (#440)

Fixed

  • upath.core: remove chain_parser parameter from type overloads to improve type narrowing (#436)

Changed

  • docs: update README with notes about __fspath__() behavior

[0.3.2] - 2025-10-05

Added

  • upath.types: add storage_options submodule with TypedDict classes for all filesystem implementations (#432)
  • upath.implementations: add storage_options type annotations to all UPath subclass constructors (#432)
  • upath: add type overloads to narrow UPath type based on protocol parameter (#431)
  • upath.registry: add overloads to get_upath_class() to return correct subclass type based on protocol (#429)
  • typesafety: add comprehensive tests for storage_options type checking (#432)
  • typesafety: add tests for protocol-based type narrowing (#429, #431)

Fixed

  • upath: fix chained paths .path property to return correct normalized paths (#426)
  • upath.implementations: correct .path normalization for cloud and http paths (#426)
  • upath._protocol: raise error when explicitly requesting empty protocol but another protocol is found (#430)
  • upath.core: adjust Pydantic v2 schema to support None protocol (#430)
  • tests: add xfail when hitting GitHub rate limit (#429)

[0.3.1] - 2025-10-03

Added

  • upath: add UPath.from_uri() classmethod (#423)
  • upath: add UPath.move_into() method (#422)
  • upath: implement .info property (#416)
  • typesafety: add thorough typechecks to UPath interface (#414)

Fixed

  • upath: fix type annotations for upath.core, upath.extensions and upath.implementations (#420)
  • upath: backport types and methods to local implementations (#421)
  • upath: stricter upath types and remove Compat* protocol (#417)

Changed

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [universal-pathlib](https://github.com/fsspec/universal_pathlib) to permit the latest version.
- [Release notes](https://github.com/fsspec/universal_pathlib/releases)
- [Changelog](https://github.com/fsspec/universal_pathlib/blob/main/CHANGELOG.md)
- [Commits](fsspec/universal_pathlib@v0.2.0...v0.3.4)

---
updated-dependencies:
- dependency-name: universal-pathlib
  dependency-version: 0.3.4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 1, 2025
@codecov
Copy link

codecov bot commented Nov 1, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 97.33%. Comparing base (8917d07) to head (eb0e518).
⚠️ Report is 4 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #400   +/-   ##
=======================================
  Coverage   97.33%   97.33%           
=======================================
  Files          19       19           
  Lines        2062     2062           
=======================================
  Hits         2007     2007           
  Misses         55       55           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions
Copy link

github-actions bot commented Nov 1, 2025

Before [8917d07] After [ec495e3] Ratio Benchmark (Parameter)
49.7±0.3ms 52.1±0.5ms 1.05 benchmarks.ReassignHalfOfNestedSeries.time_run
29.6±1ms 30.3±2ms 1.02 benchmarks.AssignSingleDfToNestedSeries.time_run
11.5±0.2ms 11.6±0.1ms 1.01 benchmarks.NestedFrameAddNested.time_run
257M 260M 1.01 benchmarks.ReassignHalfOfNestedSeries.peakmem_run
137M 137M 1 benchmarks.CountNestedBy.peakmem_run
103M 103M 1 benchmarks.NestedFrameAddNested.peakmem_run
108M 108M 1 benchmarks.NestedFrameQuery.peakmem_run
107M 106M 1 benchmarks.NestedFrameReduce.peakmem_run
1.31±0.02ms 1.30±0.01ms 1 benchmarks.NestedFrameReduce.time_run
256M 255M 0.99 benchmarks.AssignSingleDfToNestedSeries.peakmem_run

Click here to view all benchmarks.

@camposandro
Copy link
Contributor

We're still pinning universal-pathlib <0.3 due to astronomy-commons/lsdb#1047. Closing this PR.

@camposandro camposandro closed this Nov 3, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 3, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/pip/universal-pathlib-gte-0.2-and-lt-0.4.0 branch November 3, 2025 20:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants