Skip to content

Commit 7c00c77

Browse files
committed
Update readme to clarify Pygame-CE can be used
1 parent 9d25571 commit 7c00c77

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ possible, usually `pip install` will take care of everything for you.
138138

139139
* GCC and friends (optional, you need it to compile Pymunk from source. On
140140
windows Visual Studio is required to compile)
141-
* Pygame (optional, you need it to run the Pygame based demos)
141+
* Pygame or Pygame-CE (optional, you need it to run the Pygame based demos)
142142
* Pyglet (optional, you need it to run the Pyglet based demos)
143143
* Matplotlib & Jupyter Notebook (optional, you need it to run the Matplotlib
144144
based demos)

docs/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1111

1212
project = "Pymunk"
13-
copyright = "2013-2022, Victor Blomqvist"
13+
copyright = "2013-2025, Victor Blomqvist"
1414
author = "Victor Blomqvist"
1515

1616
# -- General configuration ---------------------------------------------------

pymunk/_pyglet15_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def __init__(self, **kwargs: Any) -> None:
6161
Typical usage::
6262
6363
>>> import pymunk
64-
>>> import pymunk.pygame_util
64+
>>> import pymunk.pyglet_util
6565
>>> s = pymunk.Space()
6666
>>> options = pymunk.pyglet_util.DrawOptions()
6767
>>> s.debug_draw(options)

pymunk/pyglet_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, **kwargs: Any) -> None:
5252
Typical usage::
5353
5454
>>> import pymunk
55-
>>> import pymunk.pygame_util
55+
>>> import pymunk.pyglet_util
5656
>>> s = pymunk.Space()
5757
>>> options = pymunk.pyglet_util.DrawOptions()
5858
>>> s.debug_draw(options)

0 commit comments

Comments
 (0)