version bump

This commit is contained in:
Richard Smith 2019-07-03 10:15:37 +01:00
parent a3d83f134d
commit 9be6e97073

View file

@ -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
)