Skip to content

Commit 2d321d1

Browse files
version bump
1 parent f0f9c88 commit 2d321d1

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Python Bindings for Raylib 2.5
1+
# Python Bindings for Raylib 2.6
22

33
New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ctypes.
44

@@ -8,19 +8,19 @@ New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ct
88

99
# Install
1010

11-
**Windows 10 (64 bit): Python 3.6 - 3.7**
11+
**Windows 10 (64 bit): Python 3.6 - 3.8**
1212

13-
**MacOS: Python 3.5 - 3.7**
13+
**MacOS: Python 3.6 - 3.8**
1414

15-
**Linux (Ubuntu 16.04+): Python 3.5 - 3.7**
15+
**Linux (Ubuntu 16.04+): Python 3.6 - 3.8**
1616

1717
We distribute a statically linked Raylib library, install from Pypi.
1818

1919
pip3 install raylib
2020

2121
If you're a different version of Python, or a Linux with incompatible libraries
2222
then you can either *use the dynamic binding only* or else you will have to build from source. Download, compile
23-
and install Raylib 2.5 then
23+
and install Raylib 2.6 then
2424

2525
cd raylib/static
2626
python3 build_linux.py
@@ -101,9 +101,10 @@ See test_dynamic.py for how to use.
101101

102102
# Platforms tested
103103

104-
* MacOS 10.12.6 - Python 3.7
105-
* Ubuntu 18.04 LTS - Python 3.6
106-
* Windows 10 (64 bit) - Python 3.7
104+
* (MacOS 10.12.6 - Python 3.7)
105+
* (Ubuntu 18.04 LTS - Python 3.6)
106+
* Debian 10 - Python 3.7
107+
* Windows 10 (64 bit) - Python 3.8
107108

108109
# HELP WANTED
109110

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This call to setup() does all the work
1111
setup(
1212
name="raylib",
13-
version="2.5.0.post4",
13+
version="2.6.0",
1414
description="Python CFFI bindings for Raylib",
1515
long_description=README,
1616
long_description_content_type="text/markdown",
@@ -21,12 +21,12 @@
2121
classifiers=[
2222
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.5",
24+
"Programming Language :: Python :: 3.8",
2525
"Programming Language :: Python :: 3.6",
2626
"Programming Language :: Python :: 3.7",
2727
],
28-
packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"],
28+
packages=["raylib", "raylib.dynamic", "raylib.static"],
2929
include_package_data=True,
30-
install_requires=["cffi>=1.12.3","inflection"],
30+
install_requires=["cffi>=1.14.0","inflection"],
3131
#cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead
3232
)

0 commit comments

Comments
 (0)