Skip to content

Commit

Permalink
Made all version references in python url dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
inclement committed Oct 18, 2018
1 parent 588f736 commit a7f9348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/hostpython3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

conflicts = ['hostpython2']
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/python3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

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

depends = ['hostpython3']
Expand Down

0 comments on commit a7f9348

Please sign in to comment.