Skip to content

Commit 1518d9c

Browse files
authored
PyZQM recipe needs setuptools, list it explicitly in deps (kivy#2404)
* try installing setuptools first * use specific pyzmq version tag
1 parent 0663e54 commit 1518d9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pythonforandroid/recipes/pyzmq/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
class PyZMQRecipe(CythonRecipe):
1212
name = 'pyzmq'
13-
version = 'master'
14-
url = 'https://github.com/zeromq/pyzmq/archive/{version}.zip'
13+
version = '20.0.0'
14+
url = 'https://github.com/zeromq/pyzmq/archive/v{version}.zip'
1515
site_packages_name = 'zmq'
16-
depends = ['libzmq']
16+
depends = ['setuptools', 'libzmq']
1717
cython_args = ['-Izmq/utils',
1818
'-Izmq/backend/cython',
1919
'-Izmq/devices']

0 commit comments

Comments
 (0)