dotfiles/home/private_bin/executable_generate-vivenvs

10 lines
242 B
Text
Raw Normal View History

from viv import Env, ViVenv
SPECS = (["black"], ["pre-commit"], ["pdm"])
for spec in SPECS:
vivenv = ViVenv(spec)
if not vivenv.loaded or Env().viv_force:
vivenv.create()
vivenv.install_pkgs()
vivenv.meta.write()