File tree Expand file tree Collapse file tree 8 files changed +24
-16
lines changed Expand file tree Collapse file tree 8 files changed +24
-16
lines changed Original file line number Diff line number Diff line change 2222 python3 -c "import pathlib,glob;pathlib.Path('GITHUB_ENV').write_text('SDIST_PATH' + glob.glob('dist/*.tar.gz')[0])"
2323
2424 - name : Build wheels
25- uses : pypa/cibuildwheel@v2.23.1
25+ uses : pypa/cibuildwheel@v2.23.3
2626 env :
27- CIBW_BUILD :
28- " cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
29- # "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
27+ CIBW_BUILD : " cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
3028 CIBW_TEST_COMMAND : " python -m pymunk.tests"
3129 # CIBW_BUILD_VERBOSITY: 3
3230 with :
5755 - uses : actions/checkout@v4
5856 with :
5957 submodules : true
60- - uses : pypa/cibuildwheel@v2.23.2
58+ - uses : pypa/cibuildwheel@v2.23.3
6159 env :
6260 CIBW_PLATFORM : pyodide
6361 PYMUNK_BUILD_SLIM : 1
Original file line number Diff line number Diff line change 22Changelog
33=========
44
5- .. NEXT
6- - Experimentally Build wheels for iOS (Issue #276)
7- - Fix all(?) issues calling remove in separate callbacks (Issue #247)
8-
5+ Pymunk 7.0.1 (2025-06-07)
6+ -------------------------
7+
8+ **Minor fixes and experimental iOS wheel! **
9+
10+ This is a minor patch release, which adds experimental iOS wheels, minor bug
11+ fix and fixes the verison number that was wrong in the previous release.
12+
13+ Changes:
14+
15+ - Experimentally Build wheels for iOS (Issue #276)
16+ - Fix all(?) issues calling remove in separate callbacks (Issue #247)
17+ - Fixed pymunk.version version number.
918
1019
1120Pymunk 7.0.0 (2025-05-28)
Original file line number Diff line number Diff line change 55 given-names : " Victor"
66title : " Pymunk"
77abstract : " A easy-to-use pythonic rigid body 2d physics library"
8- version : 7.0.0
9- date-released : 2025-05-28
8+ version : 7.0.1
9+ date-released : 2025-06-07
1010url : " https://pymunk.org"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ the Pymunk webpage for some examples.
1818
19192007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License
2020
21- This release is based on the latest Pymunk release (7.0.0 ),
21+ This release is based on the latest Pymunk release (7.0.1 ),
2222using Munk2D 2.0 rev 5ef7498946f0e956f294cb3fea283626921e4128.
2323
2424
Original file line number Diff line number Diff line change @@ -803,7 +803,7 @@ List of papers which has used or mentioned Pymunk:
803803 "Dynamic Robot Path Planning Among Crowds in Emergency Situations."
804804
805805
806- List last updated 2025-01-26 . If something is missing or wrong, please contact
806+ List last updated 2025-06-07 . If something is missing or wrong, please contact
807807me!
808808
809809
Original file line number Diff line number Diff line change 3232cp = _chipmunk_cffi .lib
3333ffi = _chipmunk_cffi .ffi
3434
35- version = "2 .0.0 "
35+ version = "7 .0.1 "
3636
3737chipmunk_version = "%s-%s" % (
3838 ffi .string (cp .cpVersionString ).decode ("utf-8" ),
Original file line number Diff line number Diff line change @@ -655,7 +655,8 @@ def remove3(*_: Any) -> None:
655655 s .on_collision (0 , 1 , separate = remove3 )
656656
657657 for _ in range (10 ):
658- s .step (1 )
658+ s .step (1 )
659+
659660 self .assertEqual (len (s .shapes ), 0 )
660661
661662 def testRemoveInSeparateWithoutStep (self ) -> None :
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
1010[project ]
1111name = " pymunk"
12- version = " 7.0.0 " # remember to change me for new versions!
12+ version = " 7.0.1 " # remember to change me for new versions!
1313# Require cffi >1.14.0 since that (and older) has problem with returing structs from functions.
1414# Require cffi >= 1.17.1 since older cant work with latest setuptools version
1515dependencies = [
You can’t perform that action at this time.
0 commit comments