From 9be6e9707384402c005eba72e75075ae4c5527ce Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 3 Jul 2019 10:15:37 +0100 Subject: [PATCH] version bump --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 )