Skip to content

Commit a7f9348

Browse files
committed
Made all version references in python url dynamic
1 parent 588f736 commit a7f9348

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pythonforandroid/recipes/hostpython3/__init__.py

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

88
class Hostpython3Recipe(Recipe):
99
version = '3.7.0'
10-
url = 'https://www.python.org/ftp/python/3.7.0/Python-{version}.tgz'
10+
url = 'https://www.python.org/ftp/python/{version}/Python-{version}.tgz'
1111
name = 'hostpython3'
1212

1313
conflicts = ['hostpython2']

pythonforandroid/recipes/python3/__init__.py

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

1212
class Python3Recipe(TargetPythonRecipe):
1313
version = '3.7.0'
14-
url = 'https://www.python.org/ftp/python/3.7.0/Python-{version}.tgz'
14+
url = 'https://www.python.org/ftp/python/{version}/Python-{version}.tgz'
1515
name = 'python3'
1616

1717
depends = ['hostpython3']

0 commit comments

Comments
 (0)