mirror of https://github.com/kivy/kivy.git
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:
parent
9e742f37c4
commit
bb0b79b609
12
appveyor.yml
12
appveyor.yml
|
@ -135,6 +135,12 @@ build_script:
|
||||||
|
|
||||||
Check-Error
|
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
|
# sdist must happen before anything else
|
||||||
|
|
||||||
if ($DO_WHEEL -eq "True" -and $env:BITTNESS -eq "64" -and $env:PYVER -eq "36") {
|
if ($DO_WHEEL -eq "True" -and $env:BITTNESS -eq "64" -and $env:PYVER -eq "36") {
|
||||||
|
@ -149,12 +155,6 @@ build_script:
|
||||||
Check-Error
|
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") {
|
if ($env:COMPILER -eq "msvc") {
|
||||||
pip install kivy.deps.angle
|
pip install kivy.deps.angle
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue