when attempting to install dvc using the conda build dvc=1.3.1=py37hc8dfbb8_0 I ended up with a non working dvc as it was missing the toml package, as reported by the error:
$ dvc
<SNIP>
import toml
ModuleNotFoundError: No module named 'toml'
It seems that toml wasn't added to the prerequisites of the dvc conda build.
I would like to suggest two things:
- Add toml (v0.10.1 seems to work) to the conda recipe.
- Add a test that creates a conda environment for dvc and tests it as part of the CI so that this doesn't happen again and that the recipes remain uptodate.
THANKS!
when attempting to install dvc using the conda build
dvc=1.3.1=py37hc8dfbb8_0I ended up with a non working dvc as it was missing thetomlpackage, as reported by the error:It seems that
tomlwasn't added to the prerequisites of the dvc conda build.I would like to suggest two things:
THANKS!