We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5cdc09 commit 901afecCopy full SHA for 901afec
1 file changed
.travis.yml
@@ -82,13 +82,14 @@ before_install:
82
install:
83
# Install packages needed by python-control
84
- 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
89
- if [[ "$SLYCOT" = "source" ]]; then
- # Build slycot from source
- # Use "Unix Makefiles" as generator, because Ninja cannot handle Fortran
90
git clone https://github.com/python-control/Slycot.git slycot;
91
cd slycot; python setup.py install -G "Unix Makefiles"; cd ..;
92
else if [[ "$SLYCOT" = "conda" ]]; then
- # Use version of slycot on conda-forge
93
conda install -c conda-forge slycot;
94
fi
95
0 commit comments