py.yaml 136 B

1234567
  1. tasks:
  2. create-venv:
  3. desc: Create python venv
  4. run: |
  5. if ! -e {venv_path}
  6. then python3 -m venv {venv_path}
  7. fi