cdvae
cdvae copied to clipboard
Can you make the dependencies in env.yml more abstract and move the concrete dependencies to an env.lock.yml?
https://github.com/conda-incubator/conda-lock
Here's some additional info from an initialized PyScaffold template (probably only with the ds-project extension enabled):
- Always keep your abstract (unpinned) dependencies updated in
environment.yml
and eventually insetup.cfg
if you want to ship and install your package viapip
later on.- Create concrete dependencies as
environment.lock.yml
for the exact reproduction of your environment with:For multi-OS development, consider usingconda env export -n mp-time-split -f environment.lock.yml
--no-builds
during the export.- Update your current environment with respect to a new
environment.lock.yml
using:conda env update -f environment.lock.yml --prune
Blurb above in commented out portion of mp-time-split
and xtal2png
README
-s
- #17