From ad6243abb6262ab5d27e6628863525b87fb3d5ad Mon Sep 17 00:00:00 2001 From: Daniel Rust Date: Mon, 22 Jan 2024 12:28:16 -0800 Subject: [PATCH] cffi less than 16, does not support python 2.7 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ded094a..d023dbf 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ license='MIT', packages=['libexif'], package_data={'libexif': ['libexif.cdef']}, - setup_requires=['cffi >= 1.0'], - install_requires=['cffi >= 1.0'], + setup_requires=['cffi >= 1.0,<1.6'], + install_requires=['cffi >= 1.0,<1.6'], cffi_modules=["libexif/libexif_build.py:ffi"] -) \ No newline at end of file +)