Skip to content

Commit 9528e07

Browse files
committed
Changed python2 and hostpython2 recipes to use https
1 parent a12f289 commit 9528e07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pythonforandroid/recipes/hostpython2/__init__.py

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

99
class Hostpython2Recipe(Recipe):
1010
version = '2.7.2'
11-
url = 'http://python.org/ftp/python/{version}/Python-{version}.tar.bz2'
11+
url = 'https://python.org/ftp/python/{version}/Python-{version}.tar.bz2'
1212
name = 'hostpython2'
1313

1414
conflicts = ['hostpython3']

pythonforandroid/recipes/python2/__init__.py

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

1010
class Python2Recipe(TargetPythonRecipe):
1111
version = "2.7.2"
12-
url = 'http://python.org/ftp/python/{version}/Python-{version}.tar.bz2'
12+
url = 'https://python.org/ftp/python/{version}/Python-{version}.tar.bz2'
1313
name = 'python2'
1414

1515
depends = ['hostpython2']

0 commit comments

Comments
 (0)