Skip to content

Commit

Permalink
setup: bump dvc-data to 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Jun 21, 2022
1 parent 20f69a1 commit 286fab4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dvc/output.py
Expand Up @@ -645,7 +645,7 @@ def _commit_granular_dir(self, filter_info):
ignore=self.dvcignore,
)
save_obj = save_obj.filter(prefix)
checkout_obj = save_obj.get(self.odb, prefix)
checkout_obj = save_obj.get_obj(self.odb, prefix)
otransfer(
staging,
self.odb,
Expand Down Expand Up @@ -748,7 +748,7 @@ def get_obj(self, filter_info=None, **kwargs):
fs_path = self.fs.path
if filter_info and filter_info != self.fs_path:
prefix = fs_path.relparts(filter_info, self.fs_path)
obj = obj.get(self.odb, prefix)
obj = obj.get_obj(self.odb, prefix)

return obj

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -69,7 +69,7 @@ install_requires =
scmrepo==0.0.25
dvc-render==0.0.6
dvclive>=0.7.3
dvc-data==0.0.11
dvc-data==0.0.12

[options.extras_require]
all =
Expand Down

0 comments on commit 286fab4

Please sign in to comment.