8000 Use zip instead of tar.gz to obtain setuptools · bb33bb/python-for-android@7db62ee · GitHub
[go: up one dir, main page]

Skip to content

Commit 7db62ee

Browse files
author
Kim Rinnewitz
committed
Use zip instead of tar.gz to obtain setuptools
Newer releases of setuptools on pypi are only available as zip archives. In order to support higher versions of setuptools, zip should be preferred over tar.gz. Otherwise, installing e.g. setuptools==40.0.0 will fail.
1 parent 7c7d6c8 commit 7db62ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipes/setuptools/__init__.py

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

44
class SetuptoolsRecipe(PythonRecipe):
55
version = '18.3.1'
6-
url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.tar.gz'
6+
url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.zip'
77

88
depends = [('python2', 'python3crystax')]
99

0 commit comments

Comments
 (0)
0