fix: bootstrap dev tools

This commit is contained in:
Michele Cereda
2025-04-10 21:27:30 +02:00
parent 5cd3c64efc
commit ab412a7d04
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ bootstrap:
parallel: true
commands:
venv:
run: make create-venv
run: task python:create-venv
debug:
parallel: true

View File

@@ -21,7 +21,7 @@ tasks:
vars:
PYTHON_VERSION: 3.12
cmds:
- "python{{.PYTHON_VERSION}} -m 'venv' '{{.VENV_DIR}}'"
- python{{.PYTHON_VERSION}} -m 'venv' '{{.VENV_DIR}}'
- "{{.VENV_DIR}}/bin/pip --require-virtualenv install -r '{{.REQUIREMENTS_FILE}}'"
python:recreate-venv: