VPP-959: Python API require minimum CFFI version. 71/8271/2
authorOle Troan <ot@cisco.com>
Thu, 31 Aug 2017 10:59:43 +0000 (12:59 +0200)
committerFlorin Coras <florin.coras@gmail.com>
Thu, 31 Aug 2017 21:42:00 +0000 (21:42 +0000)
Change-Id: I328689b7d4efe6017412de43630a5e9f3633dd71
Signed-off-by: Ole Troan <ot@cisco.com>
src/vpp-api/python/setup.py

index a4749a8..626ddde 100644 (file)
@@ -26,7 +26,7 @@ setup (name = 'vpp_papi',
        python_requires='>=2.7, >=3.3',
        license = 'Apache-2.0',
        test_suite = 'tests',
-       install_requires=['cffi'],
+       install_requires=['cffi >= 1.10'],
        py_modules=['vpp_papi'],
        long_description = '''VPP Python language binding.''',
        zip_safe = True,