Skip to content

Commit

Permalink
Tighten dependency on datalad-next to pin error behavior
Browse files Browse the repository at this point in the history
datalad-next now does wholistic parameter validation.
  • Loading branch information
mih committed Jul 14, 2023
1 parent 19542b8 commit 2c549df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datalad_ebrains/tests/test_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_clone_invalid_call(tmp_path):
# make sure the parameter validation is working
from datalad.api import ebrains_clone
# always needs a `source`
with pytest.raises(TypeError):
with pytest.raises(ValueError):
ebrains_clone()
# must contain a UUID
with pytest.raises(ValueError):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers =
python_requires = >= 3.7
install_requires =
datalad >= 0.17
datalad_next >= 1.0.0b2
datalad_next >= 1.0.0b3
ebrains-kg-core
fairgraph >= 0.11
packages = find_namespace:
Expand Down

0 comments on commit 2c549df

Please sign in to comment.