Use conda-forge on pyside2+linux (#1464)

This commit is contained in:
Ogi Moore 2020-12-09 22:43:21 -08:00 committed by GitHub
parent 00fd63e859
commit a99bda0bb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -105,7 +105,14 @@ jobs:
conda create --name test-environment-$(python.version) python=$(python.version) --yes --quiet
source activate test-environment-$(python.version)
conda info
conda install $(qt.bindings) numpy scipy pyopengl h5py six --yes --quiet
if [ $(qt.bindings) == "pyside2" ]
then
conda install $(qt.bindings) --yes --quiet --strict-channel-priority
else
conda install $(qt.bindings) --yes --quiet
fi
conda install numpy scipy pyopengl h5py six --yes --quiet
pip install matplotlib
else
pip install $(qt.bindings) numpy scipy pyopengl h5py six matplotlib