Skip to content

Commit

Permalink
fixup! [wip][feature] Add support for fsspec backends
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Oct 4, 2024
1 parent 8f3e9cf commit 520ffe4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ jobs:
matrix.python-version == '3.13.0-rc.3' ||
matrix.python-version == '3.14.0-alpha.0')
run: |
brew install libgit2
brew install [email protected]
brew link [email protected] --force
- name: Install pip Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ lbzip2 -cd well-compressed-file.bz2 | createMultiFrameZstd $(( 4*1024*1024 )) >

# Remote Files

The [fsspec](https://github.com/fsspec/filesystem_spec) API backend adds suport for mounting many remote archive or folders:
The [fsspec](https://github.com/fsspec/filesystem_spec) API backend adds support for mounting many remote archive or folders:

- `git://[path-to-repo:][ref@]path/to/file`
Uses the current path if no repository path is specified.
Expand Down
5 changes: 5 additions & 0 deletions core/ratarmountcore/ZipMountSource.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
from .SQLiteIndexMountSource import SQLiteIndexMountSource
from .utils import InvalidIndexError, overrides

try:
import fast_zip_decryption
except Exception:
pass


class ZipMountSource(SQLiteIndexMountSource):
def __init__(
Expand Down

0 comments on commit 520ffe4

Please sign in to comment.