From ac6539c8b5389960b9a93a2580597d4cf28b4e4f Mon Sep 17 00:00:00 2001 From: "D. Mitch Bailey" Date: Fri, 14 Feb 2025 23:07:36 -0800 Subject: [PATCH] Allow volare installation from user project directories. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7cbd7845..bfc4b73c 100644 --- a/Makefile +++ b/Makefile @@ -823,12 +823,12 @@ README.rst: README.src.rst docs/source/getting-started.rst docs/source/tool-vers -e's@.. warning::@**WARNING:**@g' \ > openlane/README.rst -venv/manifest.txt: ./requirements.txt +venv/manifest.txt: $(CARAVEL_ROOT)/requirements.txt $(MAKE) check-python rm -rf ./venv $(PYTHON_BIN) -m venv ./venv ./venv/bin/python3 -m pip install --upgrade --no-cache-dir pip - ./venv/bin/python3 -m pip install --upgrade --no-cache-dir -r requirements.txt + ./venv/bin/python3 -m pip install --upgrade --no-cache-dir -r $(CARAVEL_ROOT)/requirements.txt ./venv/bin/python3 -m pip freeze > $@ ###########################################################################