From 99476e75003f0bd6789dd40bf58395d9169effc1 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Mon, 4 Feb 2019 15:14:30 +0100 Subject: [PATCH] Bumps netiffaces version & removes from broken list, refs #1539 Only `python2` build fails with: ``` RAN: /home/user/.local/share/python-for-android/build/other_builds/hostpython2/desktop/hostpython2/native-build/python setup.py build_ext -v STDOUT: Traceback (most recent call last): File "setup.py", line 1, in import setuptools ImportError: No module named setuptools ``` --- ci/constants.py | 2 +- pythonforandroid/recipes/netifaces/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/constants.py b/ci/constants.py index 30ac152244..945f708e70 100644 --- a/ci/constants.py +++ b/ci/constants.py @@ -33,6 +33,7 @@ class TargetPython(Enum): 'libtribler', 'ndghttpsclient', 'm2crypto', + # ImportError: No module named setuptools 'netifaces', 'Pillow', # depends on cffi that still seems to have compilation issues @@ -78,7 +79,6 @@ class TargetPython(Enum): 'kivent_core', 'kivent_cymunk', 'kivent_particles', 'kivent_polygen', # requires `libpq-dev` system dependency e.g. for `pg_config` binary 'psycopg2', - 'netifaces', # fatal error: crypt.h: No such file or directory 'pyleveldb', 'protobuf_cpp', diff --git a/pythonforandroid/recipes/netifaces/__init__.py b/pythonforandroid/recipes/netifaces/__init__.py index 6c9361a80b..8ad1382025 100644 --- a/pythonforandroid/recipes/netifaces/__init__.py +++ b/pythonforandroid/recipes/netifaces/__init__.py @@ -3,7 +3,7 @@ class NetifacesRecipe(CompiledComponentsPythonRecipe): - version = '0.10.7' + version = '0.10.9' url = 'https://files.pythonhosted.org/packages/source/n/netifaces/netifaces-{version}.tar.gz'