Skip to content

Commit f131abc

Browse files
authored
Merge pull request kivy#1139 from wexi/local
Two humble changes
2 parents 4ddf1ae + 7dab826 commit f131abc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pythonforandroid/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def report_hook(index, blksize, size):
149149

150150
urlretrieve(url, target, report_hook)
151151
return target
152-
elif parsed_url.scheme in ('git', 'git+ssh', 'git+http', 'git+https'):
152+
elif parsed_url.scheme in ('git', 'git+file', 'git+ssh', 'git+http', 'git+https'):
153153
if isdir(target):
154154
with current_directory(target):
155155
shprint(sh.git, 'fetch', '--tags')

pythonforandroid/recipes/cryptography/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class CryptographyRecipe(CompiledComponentsPythonRecipe):
55
name = 'cryptography'
6-
version = '1.4'
6+
version = '1.3'
77
url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz'
88
depends = [('python2', 'python3crystax'), 'openssl', 'idna', 'pyasn1', 'six', 'setuptools', 'enum34', 'ipaddress', 'cffi']
99
call_hostpython_via_targetpython = False

0 commit comments

Comments
 (0)