File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,14 @@ before_install:
8282install :
8383 # Install packages needed by python-control
8484 - conda install $SCIPY matplotlib
85+
86+ # Figure out how to build slycot
87+ # source: use "Unix Makefiles" as generator; Ninja cannot handle Fortran
88+ # conda: use pre-compiled version of slycot on conda-forge
8589 - if [[ "$SLYCOT" = "source" ]]; then
86- # Build slycot from source
87- # Use "Unix Makefiles" as generator, because Ninja cannot handle Fortran
8890 git clone https://github.com/python-control/Slycot.git slycot;
8991 cd slycot; python setup.py install -G "Unix Makefiles"; cd ..;
9092 else if [[ "$SLYCOT" = "conda" ]]; then
91- # Use version of slycot on conda-forge
9293 conda install -c conda-forge slycot;
9394 fi
9495
You can’t perform that action at this time.
0 commit comments