Fix missing requirements for Python 3.6 64bit

sdist might need to be first, but without deps it will fail on missing Cython, thus no wheels for 3.6 64b
This commit is contained in:
Peter Badida 2018-06-30 09:22:51 +02:00 committed by GitHub
parent 9e742f37c4
commit bb0b79b609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -135,6 +135,12 @@ build_script:
Check-Error
pip install mock cython pygments docutils nose kivy.deps.glew_dev kivy.deps.glew kivy.deps.gstreamer_dev kivy.deps.sdl2_dev kivy.deps.sdl2
pip --no-cache-dir install kivy.deps.gstreamer
Check-Error
# sdist must happen before anything else
if ($DO_WHEEL -eq "True" -and $env:BITTNESS -eq "64" -and $env:PYVER -eq "36") {
@ -149,12 +155,6 @@ build_script:
Check-Error
}
pip install mock cython pygments docutils nose kivy.deps.glew_dev kivy.deps.glew kivy.deps.gstreamer_dev kivy.deps.sdl2_dev kivy.deps.sdl2
pip --no-cache-dir install kivy.deps.gstreamer
Check-Error
if ($env:COMPILER -eq "msvc") {
pip install kivy.deps.angle
}