Skip to content

Commit

Permalink
[appveyor] hardcode pyevtk install
Browse files Browse the repository at this point in the history
  • Loading branch information
renefritze committed Jan 9, 2017
1 parent 7cc295c commit d410ca4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .appveyor.yml
Expand Up @@ -48,8 +48,12 @@ install:
- set PATH=%CONDA%;%CONDA%\Scripts;%PATH%
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# hardcode a few installs that don't succeed otherwise
- conda install numpy pip
- pip install --only-binary --no-index --find-links https://pymor.github.io/wheels/ pyside & echo pyside
- pip install --only-binary --no-index --find-links https://pymor.github.io/wheels/ pyside

- if [%PYTHON_VERSION%]==["3.4"] ( conda remove numpy && pip install numpy )

- for /f %%i in (requirements.txt requirements-optional.txt requirements-travis.txt ) do (
conda install %%i 1> nul 2>&1 & pip install %%i 1> nul 2>&1 & echo %%i
)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -24,7 +24,7 @@ ignore =
debian
debian/*
.landscape.yaml
.appveyor.yaml
.appveyor.yml
.mailmap
graveyard/*
graveyard
Expand Down

0 comments on commit d410ca4

Please sign in to comment.