Skip to content

Commit

Permalink
deps: bump dvc-data to 0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Aug 19, 2022
1 parent fc509d4 commit 7596381
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
17 changes: 16 additions & 1 deletion dvc/fs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
Schemes,
generic,
get_fs_cls,
known_implementations,
localfs,
registry,
system,
)
Expand All @@ -19,13 +21,26 @@
ConfigError,
RemoteMissingDepsError,
)
from dvc_objects.fs.implementations.local import localfs # noqa: F401
from dvc_objects.fs.path import Path # noqa: F401

from .data import DataFileSystem # noqa: F401
from .dvc import DvcFileSystem # noqa: F401
from .git import GitFileSystem # noqa: F401

known_implementations.update(
{
"dvc": {
"class": "dvc.fs.dvc.DvcFileSystem",
"err": "dvc is supported, but requires 'dvc' to be installed",
},
"git": {
"class": "dvc.fs.git.GitFileSystem",
"err": "git is supported, but requires 'dvc' to be installed",
},
}
)


# pylint: enable=unused-import


Expand Down
5 changes: 4 additions & 1 deletion dvc/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,13 @@ def _get_linktype_support_info(repo):

def _get_supported_remotes():
supported_remotes = []
for scheme in registry:
for scheme in registry.items():
if scheme in [Schemes.LOCAL, Schemes.MEMORY]:
continue

if scheme in ("dvc", "git"):
continue

try:
fs_cls = registry[scheme]
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ install_requires =
dvc-render==0.0.9
dvc-task==0.1.2
dvclive>=0.10.0
dvc-data==0.1.20
dvc-data==0.1.21
dvc-http==0.0.2
hydra-core>=1.1.0

Expand Down

0 comments on commit 7596381

Please sign in to comment.