From 2ef05b9aad15e43a9898bd427b7160d51f313ab0 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Mon, 3 Jun 2019 11:16:48 -0700 Subject: [PATCH] Python: cffi 1.12.3 is broken --- src/platform/python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/python/setup.py b/src/platform/python/setup.py index c9030313c..e610f551f 100644 --- a/src/platform/python/setup.py +++ b/src/platform/python/setup.py @@ -21,8 +21,8 @@ setup( author_email="jeffrey@endrift.com", url="http://github.com/mgba-emu/mgba/", packages=["mgba"], - setup_requires=['cffi>=1.6', 'pytest-runner'], - install_requires=['cffi>=1.6', 'cached-property'], + setup_requires=['cffi>=1.6,!=1.12.3', 'pytest-runner'], + install_requires=['cffi>=1.6,!=1.12.3', 'cached-property'], extras_require={'pil': ['Pillow>=2.3'], 'cinema': ['pyyaml', 'pytest']}, tests_require=['pytest'], cffi_modules=["_builder.py:ffi"],