current temporary fix for environments

Signed-off-by: Ryan Johnson <ryancj14@gmail.com>
This commit is contained in:
Ryan Johnson 2021-05-13 12:05:18 -06:00
parent 0da09dafff
commit 1baae70b14
1 changed files with 5 additions and 2 deletions

View File

@ -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/*") VERILOG_SRCS=$(shell find . -name "*.v" -not -path "./env/*" -not -path "./symbiflow/*")
env: env:
pip install -r requirements.txt conda env create -f environment.yml
conda activate symbiflow-examples
format: format:
yapf -i ${PYTHON_SRCS} yapf -i ${PYTHON_SRCS}
@ -25,6 +26,8 @@ format:
done done
clean:: clean::
rm -rf env/ symbiflow/ rm -rf env/
conda deactivate
conda env remove -n symbiflow-examples
.PHONY: env format clean .PHONY: env format clean