Skip to content

Commit 3ef8f6e

Browse files
committed
prep 7.2.0
1 parent d193d59 commit 3ef8f6e

File tree

6 files changed

+35
-9
lines changed

6 files changed

+35
-9
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ jobs:
99
strategy:
1010
matrix:
1111
os:
12-
[ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14]
12+
[
13+
ubuntu-latest,
14+
ubuntu-24.04-arm,
15+
windows-latest,
16+
macos-latest,
17+
macos-15-intel,
18+
]
1319

1420
steps:
1521
- uses: actions/checkout@v4
@@ -38,8 +44,7 @@ jobs:
3844

3945
- name: Upload sdist artifact
4046
uses: actions/upload-artifact@v4
41-
if:
42-
${{ github.ref == 'refs/heads/master' && matrix.os ==
47+
if: ${{ github.ref == 'refs/heads/master' && matrix.os ==
4348
'windows-latest'}}
4449
with:
4550
name: sdist-${{ matrix.os }}-${{ strategy.job-index }}

.harper-dictionary.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Emscripten
2+
aafigure
3+
cffi
4+
matplotlib
5+
numpy
6+
png
7+
pygame
8+
pyglet
9+
pymunk
10+
pythonic
11+
setuptools
12+
wav

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors:
55
given-names: "Victor"
66
title: "Pymunk"
77
abstract: "A easy-to-use pythonic rigid body 2d physics library"
8-
version: 7.1.0
9-
date-released: 2025-06-29
8+
version: 7.2.0
9+
date-released: 2025-11-02
1010
url: "https://pymunk.org"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ the Pymunk webpage for some examples.
1818

1919
2007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License
2020

21-
This release is based on the latest Pymunk release (7.1.0),
21+
This release is based on the latest Pymunk release (7.2.0),
2222
using Munk2D 2.0.1 rev ade7ed72849e60289eefb7a41e79ae6322fefaf3.
2323

2424

pymunk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
cp = _chipmunk_cffi.lib
3333
ffi = _chipmunk_cffi.ffi
3434

35-
version = "7.1.0"
35+
version = "7.2.0"
3636

3737
chipmunk_version = "%s-%s" % (
3838
ffi.string(cp.cpVersionString).decode("utf-8"),

pyproject.toml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "pymunk"
12-
version = "7.1.0" # remember to change me for new versions!
12+
version = "7.2.0" # remember to change me for new versions!
1313
# Require cffi >1.14.0 since that (and older) has problem with returning structs from functions.
1414
# Require cffi >= 1.17.1 since older cant work with latest setuptools version
1515
dependencies = [
@@ -36,7 +36,16 @@ classifiers = [
3636
requires-python = ">=3.9"
3737

3838
[project.optional-dependencies]
39-
dev = ["pyglet", "pygame", "pillow", "sphinx", "aafigure", "wheel", "matplotlib", "numpy"]
39+
dev = [
40+
"pyglet",
41+
"pygame",
42+
"pillow",
43+
"sphinx",
44+
"aafigure",
45+
"wheel",
46+
"matplotlib",
47+
"numpy",
48+
]
4049
[project.urls]
4150
Homepage = "https://www.pymunk.org"
4251
Documentation = "https://www.pymunk.org"

0 commit comments

Comments
 (0)