Closed justindujardin closed 1 year ago
Base: 100.00% // Head: 100.00% // No change to project coverage :thumbsup:
Coverage data is based on head (
61c6afd
) compared to base (ba5b5b3
). Patch coverage: 100.00% of modified lines in pull request are covered.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
:tada: This PR is included in version 0.10.0 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Return
BlobStat
consistently for local and remote paths.Changes
stat
inBasePath
and yieldBlobStat
s instead ofos.stat_result
.self.stat()
internally which doesn't work with BlobStats.BREAKING CHANGE: Previously, when using Pathy.fluid paths that point to local file system paths, Pathy would return an
os.stat_result
rather than aBlobStat
. This made it difficult to treat mixed paths consistently.Now Pathy returns a BlobStat structure for local and remote paths.
If you need to use
os.stat_result
, you can still callos.stat(my_path)
to access it.