Skip to content

Commit 7262e4f

Browse files
2.5.0post2
1 parent b093d1f commit 7262e4f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ New CFFI API static bindings. Faster, fewer bugs and easier to maintain than ct
88

99
**MacOS: Python 3.5 - 3.7**
1010

11+
**Linux (Ubuntu 16.04+): Python 3.5 - 3.7**
12+
1113
We distribute a statically linked Raylib library, install from Pypi.
1214

1315
pip3 install raylib
1416

15-
If you're using **Linux**, or a different version of Python, or maybe Windows/Mac with incompatible libraries
17+
If you're a different version of Python, or a Linux with incompatible libraries
1618
then you can either *use the dynamic binding only* or else you will have to build from source. Download, compile
1719
and install Raylib 2.5 then
1820

@@ -69,7 +71,6 @@ prl.init_window(800, 450, "Hello Pyray")
6971
prl.set_target_fps(60)
7072
7173
camera = prl.Camera3D([18.0, 16.0, 18.0], [0.0, 0.0, 0.0], [0.0, 1.0, 0.0], 45.0, 0)
72-
image = prl.load_image("examples/models/resources/heightmap.png")
7374
prl.set_camera_mode(camera, prl.CAMERA_ORBITAL)
7475
7576
while not prl.window_should_close():

setup.py

Lines changed: 1 addition & 1 deletion
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.post1",
13+
version="2.5.0.post2",
1414
description="Python CFFI bindings for Raylib",
1515
long_description=README,
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)