From 90e3f09b75290d3180a2ebb83834bf48da9e380a Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sun, 11 Nov 2018 00:59:59 +0100 Subject: [PATCH] Cleans broken python3crystax recipe list With #1435 we're falling back automatically to python2 if the recipe is incompatible. This is better than maintaining a skip list, because the recipe will still be compiled under python2 on conflicting dependency graph for python3crystax. --- ci/constants.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/ci/constants.py b/ci/constants.py index 29b8495e81..fcd0c77443 100644 --- a/ci/constants.py +++ b/ci/constants.py @@ -55,16 +55,7 @@ class TargetPython(Enum): 'zope', ]) BROKEN_RECIPES_PYTHON3_CRYSTAX = set([ - # not yet python3crystax compatible - 'apsw', 'atom', 'boost', 'brokenrecipe', 'cdecimal', 'cherrypy', - 'coverage', 'dateutil', 'enaml', 'ethash', 'kiwisolver', 'libgeos', - 'libnacl', 'libsodium', 'libtorrent', 'libtribler', 'libzbar', 'libzmq', - 'm2crypto', 'mysqldb', 'ndghttpsclient', 'pil', 'pycrypto', 'pyethereum', - 'pygame', 'pyleveldb', 'pyproj', 'pyzmq', 'regex', 'shapely', - 'simple-crypt', 'twsisted', 'vispy', 'websocket-client', 'zbar', - 'zeroconf', 'zope', - # https://github.com/kivy/python-for-android/issues/550 - 'audiostream', + 'brokenrecipe', # enum34 is not compatible with Python 3.6 standard library # https://stackoverflow.com/a/45716067/185510 'enum34',