Skip to content

Commit

Permalink
Fix pip install PySide2>=5.12.0,<=5.14.1
Browse files Browse the repository at this point in the history
Need quotes when doing pip install during conda build.
  • Loading branch information
ntabris committed Mar 31, 2020
1 parent 2abb513 commit 6105c2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .conda/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ rem # this out myself, ughhh.
set PIP_NO_INDEX=False
set PIP_NO_DEPENDENCIES=False
set PIP_IGNORE_INSTALLED=False
pip install cattrs==1.0.0rc0 opencv-python-headless==3.4.1.15 PySide2>=5.12.0,<=5.14.1 imgaug==0.3.0 qimage2ndarray==1.8 imgstore jsmin seaborn
REM pip install tensorflow==2.1
pip install cattrs==1.0.0rc0 opencv-python-headless==3.4.1.15 "PySide2>=5.12.0,<=5.14.1" imgaug==0.3.0 qimage2ndarray==1.8 imgstore jsmin seaborn
pip install

rem # Use and update environment.yml call to install pip dependencies. This is slick.
rem # While environment.yml contains the non pip dependencies, the only thing left
Expand Down
2 changes: 1 addition & 1 deletion .conda/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export PIP_NO_INDEX=False
export PIP_NO_DEPENDENCIES=False
export PIP_IGNORE_INSTALLED=False

pip install cattrs==1.0.0rc0 opencv-python-headless==3.4.1.15 PySide2>=5.12.0,<=5.14.1 imgaug==0.3.0 qimage2ndarray==1.8 imgstore jsmin seaborn
pip install cattrs==1.0.0rc0 opencv-python-headless==3.4.1.15 "PySide2>=5.12.0,<=5.14.1" imgaug==0.3.0 qimage2ndarray==1.8 imgstore jsmin seaborn
#pip install tensorflow==2.1

pip install setuptools-scm
Expand Down

0 comments on commit 6105c2c

Please sign in to comment.