From 1baae70b14a5a4be82e43a47db6c125d03c5c26b Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 13 May 2021 12:05:18 -0600 Subject: [PATCH] current temporary fix for environments Signed-off-by: Ryan Johnson --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8b6ad8f..5eaf764 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,8 @@ JSON_SRCS=$(shell find . -name "*.json" -not -path "./env/*" -not -path "./symbi VERILOG_SRCS=$(shell find . -name "*.v" -not -path "./env/*" -not -path "./symbiflow/*") env: - pip install -r requirements.txt + conda env create -f environment.yml + conda activate symbiflow-examples format: yapf -i ${PYTHON_SRCS} @@ -25,6 +26,8 @@ format: done clean:: - rm -rf env/ symbiflow/ + rm -rf env/ + conda deactivate + conda env remove -n symbiflow-examples .PHONY: env format clean