You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following warning but the dataset is setup with the yoda procedure as expected.
❯ dl create -c yoda TEST
[INFO ] Running procedure cfg_yoda
[INFO ] == Command start (output follows) =====
[WARNING] Could not load extension 'next': ImportError(cannot import name 'Dataset' from partially initialized module 'datalad.api' (most likely due to a circular import) (/home/fhoffstaedter/datalad_venv/lib/python3.9/site-packages/datalad/api.py))
[INFO ] == Command exit (modification check follows) =====
run(ok): /home/fhoffstaedter/DATA_TMP/TEST (dataset) [/home/fhoffstaedter/datalad_venv/bin/pyt...]
create(ok): /home/fhoffstaedter/DATA_TMP/TEST (dataset)
action summary:
create (ok: 1)
run (ok: 1)
datalad create -c yoda TEST 7.06s user 2.16s system 95% cpu 9.611 total
❯ cd TEST; dl run-procedure cfg_yoda
[INFO ] Running procedure cfg_yoda
[INFO ] == Command start (output follows) =====
[WARNING] Could not load extension 'next': ImportError(cannot import name 'Dataset' from partially initialized module 'datalad.api' (most likely due to a circular import) (/home/fhoffstaedter/datalad_venv/lib/python3.9/site-packages/datalad/api.py))
[INFO ] == Command exit (modification check follows) =====
run(ok): /home/fhoffstaedter/DATA_TMP/TEST (dataset) [/home/fhoffstaedter/datalad_venv/bin/pyt...]
datalad run-procedure cfg_yoda 5.98s user 1.42s system 97% cpu 7.565 total
❯ dl --version
datalad 1.0.2
❯ python
Python 3.9.2 (default, Feb 28 2021, 17:03:44)
[GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from datalad.distribution.dataset import require_dataset
>>> from datalad.utils import create_tree
>>>
>>> ds = require_dataset('.')
>>> ds
Dataset('/home/fhoffstaedter/DATA_TMP/TEST')
>>> ds.status()
[WARNING] Could not load extension 'next': ImportError(cannot import name 'Dataset' from partially initialized module 'datalad.api' (most likely due to a circular import) (/home/fhoffstaedter/datalad_venv/lib/python3.9/site-packages/datalad/api.py))
nothing to save, working tree clean
The text was updated successfully, but these errors were encountered:
I get the following warning but the dataset is setup with the yoda procedure as expected.
The text was updated successfully, but these errors were encountered: