diff --git a/setup.py b/setup.py index a549204..9d5b6b3 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text() # This call to setup() does all the work setup( name="raylib", - version="2.5.0.post3", + version="2.5.0.post4", description="Python CFFI bindings for Raylib", long_description=README, long_description_content_type="text/markdown", @@ -27,6 +27,6 @@ setup( ], packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"], include_package_data=True, - install_requires=["cffi","inflection"], + install_requires=["cffi>=1.12.3","inflection"], #cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead )