diff --git a/README.md b/README.md index a710154..2965912 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ct We distribute a statically linked binary Raylib library, install from Pypi. - pip3 install raylib - -Or to force latest version: - pip3 install raylib==3.7.0 +Or to have pip try to build the latest version from source: + + pip3 install raylib + Some platforms that should be available: **Windows 10 (64 bit): Python 3.7 - 3.9** diff --git a/setup.py b/setup.py index 1a91a0e..1609074 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ class BinaryDistribution(Distribution): # This call to setup() does all the work setup( name="raylib", - version="3.7.0", + version="3.7.0.post1", description="Python CFFI bindings for Raylib", long_description=README, long_description_content_type="text/markdown",