Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/selfhosted_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.9.13', '3.10', '3.11', '3.12']
python-version: ['3.9.13', '3.10', '3.11', '3.12', '3.13']
architecture: ['x64']

steps:
Expand Down
2 changes: 1 addition & 1 deletion arcade/examples/pymunk_demo_top_down.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def wall_hit_handler(sprite_a, sprite_b, arbiter, space, data):
def on_mouse_press(self, x, y, button, modifiers):
""" Called whenever the mouse button is clicked. """

bullet = arcade.SpriteSolidColor(5, 5, arcade.color.RED)
bullet = arcade.SpriteSolidColor(width=5, height=5, color=arcade.color.RED)
self.bullet_list.append(bullet)

# Position the bullet at the player's current location
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand All @@ -25,7 +26,7 @@ dependencies = [
# Expected future dev preview release on PyPI (not yet released)
'pyglet==2.1.dev7',
"pillow~=10.4.0",
"pymunk~=6.8.1",
"pymunk~=6.9.0",
"pytiled-parser~=2.2.5",
]
dynamic = ["version"]
Expand Down
Loading