Michael
Michael

Reputation: 3366

Kivy 1.8 and Cython 0.21.2

Using Buildozer I get 12 times:

#error Do not use this file, it is the result of a failed Cython compilation.

And eventually:

Command failed: ./distribute.sh -m "kivy" -d "myapp"

According to the Kivy docs, I use Cython 0.21.2.

See the full log.

Any help would be very much appreciated!

Upvotes: 0

Views: 176

Answers (1)

kitti
kitti

Reputation: 14834

Looks like you have Kivy 1.8.0 installed, and you're building Kivy 1.9.0 with buildozer. You will need to uninstall or upgrade your system Kivy. This is a bug in Cython, because it is using the system-installed pxds before the local directory pxds.

Upvotes: 1

Related Questions