python-for-android icon indicating copy to clipboard operation
python-for-android copied to clipboard

Remove hard coded incorrect build arguments for pyzmq recipe

Open smaudet opened this issue 5 years ago • 2 comments

Cython does not support any -I arguments. You have hard coded a reference to an invalid build configuration into your python-for-android fork.

Simply add pyzmq to your build requirements and watch it fail.

pythonforandroid/recipes/pyzmq/init.py

class PyZMQRecipe(CythonRecipe):
    name = 'pyzmq'
    version = 'master'
    url = 'https://github.com/zeromq/pyzmq/archive/{version}.zip'
    site_packages_name = 'zmq'
    depends = ['libzmq']
    cython_args = ['-Izmq/utils',
                   '-Izmq/backend/cython',
                   '-Izmq/devices']

smaudet avatar Feb 28 '20 10:02 smaudet

https://github.com/kivy/python-for-android/issues/1575

Potentially linked?

smaudet avatar Feb 29 '20 13:02 smaudet

I commented cython_args and this worked for my app.

Diskein avatar Apr 01 '20 20:04 Diskein