Skip to content

Commit 15c032a

Browse files
authored
Merge pull request kivy#1296 from om26er/more-python3-support
Fix twisted and cryptography build for python 3
2 parents 5a3ed06 + 2edccee commit 15c032a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pythonforandroid/recipes/enum34/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class Enum34Recipe(PythonRecipe):
55
version = '1.1.3'
66
url = 'https://pypi.python.org/packages/source/e/enum34/enum34-{version}.tar.gz'
7-
depends = ['python2', 'setuptools']
7+
depends = [('python2', 'python3crystax'), 'setuptools']
88
site_packages_name = 'enum'
99
call_hostpython_via_targetpython = False
1010

pythonforandroid/recipes/ipaddress/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IpaddressRecipe(PythonRecipe):
66
version = '1.0.16'
77
url = 'https://pypi.python.org/packages/source/i/ipaddress/ipaddress-{version}.tar.gz'
88

9-
depends = ['python2']
9+
depends = [('python2', 'python3crystax')]
1010

1111

1212
recipe = IpaddressRecipe()

pythonforandroid/recipes/pyasn1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class PyASN1Recipe(PythonRecipe):
66
version = '0.1.8'
77
url = 'https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz'
8-
depends = ['python2']
8+
depends = [('python2', 'python3crystax')]
99

1010

1111
recipe = PyASN1Recipe()

pythonforandroid/recipes/pyopenssl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class PyOpenSSLRecipe(PythonRecipe):
66
version = '0.14'
77
url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz'
8-
depends = ['openssl', 'python2', 'setuptools']
8+
depends = [('python2', 'python3crystax'), 'openssl', 'setuptools']
99
site_packages_name = 'OpenSSL'
1010

1111
call_hostpython_via_targetpython = False

pythonforandroid/recipes/zope_interface/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ZopeInterfaceRecipe(PythonRecipe):
1010
url = 'https://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'
1111
site_packages_name = 'zope.interface'
1212

13-
depends = ['python2']
13+
depends = [('python2', 'python3crystax')]
1414
patches = ['no_tests.patch']
1515

1616
def prebuild_arch(self, arch):

0 commit comments

Comments
 (0)