We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec4de6 commit f7c2e24Copy full SHA for f7c2e24
Makefile
@@ -51,7 +51,7 @@ ensure-venv:
51
@if [ ! -d $(VENVDIR) ] ; then \
52
echo "Creating venv in $(VENVDIR)"; \
53
if uv --version > /dev/null; then \
54
- uv venv $(VENVDIR); \
+ uv venv --python=$(PYTHON) $(VENVDIR); \
55
VIRTUAL_ENV=$(VENVDIR) uv pip install -r requirements.txt; \
56
else \
57
$(PYTHON) -m venv $(VENVDIR); \
0 commit comments