current temporary fix for environments
Signed-off-by: Ryan Johnson <ryancj14@gmail.com>
This commit is contained in:
parent
0da09dafff
commit
1baae70b14
7
Makefile
7
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
|
||||
|
|
Loading…
Reference in New Issue