version bump

This commit is contained in:
Electron Studio 2020-02-14 23:44:17 +00:00
parent f0f9c8861a
commit 2d321d13b5
2 changed files with 13 additions and 12 deletions

View file

@ -1,4 +1,4 @@
# Python Bindings for Raylib 2.5 # Python Bindings for Raylib 2.6
New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ctypes. New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ctypes.
@ -8,11 +8,11 @@ New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ct
# Install # Install
**Windows 10 (64 bit): Python 3.6 - 3.7** **Windows 10 (64 bit): Python 3.6 - 3.8**
**MacOS: Python 3.5 - 3.7** **MacOS: Python 3.6 - 3.8**
**Linux (Ubuntu 16.04+): Python 3.5 - 3.7** **Linux (Ubuntu 16.04+): Python 3.6 - 3.8**
We distribute a statically linked Raylib library, install from Pypi. We distribute a statically linked Raylib library, install from Pypi.
@ -20,7 +20,7 @@ We distribute a statically linked Raylib library, install from Pypi.
If you're a different version of Python, or a Linux with incompatible libraries If you're a different version of Python, or a Linux with incompatible libraries
then you can either *use the dynamic binding only* or else you will have to build from source. Download, compile then you can either *use the dynamic binding only* or else you will have to build from source. Download, compile
and install Raylib 2.5 then and install Raylib 2.6 then
cd raylib/static cd raylib/static
python3 build_linux.py python3 build_linux.py
@ -101,9 +101,10 @@ See test_dynamic.py for how to use.
# Platforms tested # Platforms tested
* MacOS 10.12.6 - Python 3.7 * (MacOS 10.12.6 - Python 3.7)
* Ubuntu 18.04 LTS - Python 3.6 * (Ubuntu 18.04 LTS - Python 3.6)
* Windows 10 (64 bit) - Python 3.7 * Debian 10 - Python 3.7
* Windows 10 (64 bit) - Python 3.8
# HELP WANTED # HELP WANTED

View file

@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
# This call to setup() does all the work # This call to setup() does all the work
setup( setup(
name="raylib", name="raylib",
version="2.5.0.post4", version="2.6.0",
description="Python CFFI bindings for Raylib", description="Python CFFI bindings for Raylib",
long_description=README, long_description=README,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@ -21,12 +21,12 @@ setup(
classifiers=[ classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
], ],
packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"], packages=["raylib", "raylib.dynamic", "raylib.static"],
include_package_data=True, include_package_data=True,
install_requires=["cffi>=1.12.3","inflection"], install_requires=["cffi>=1.14.0","inflection"],
#cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead #cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead
) )