Skip to content

Commit 639e80e

Browse files
committed
Prep 6.11.0
1 parent 3f03da9 commit 639e80e

15 files changed

+36
-21
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
uses: pypa/cibuildwheel@v2.22.0
2525
env:
2626
CIBW_BUILD:
27-
# "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp39-* pp310-*"
28-
"cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
27+
"cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp39-* pp310-*"
28+
# "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
2929
CIBW_TEST_COMMAND: "python -m pymunk.tests"
3030
# CIBW_BUILD_VERBOSITY: 3
3131
with:

CHANGELOG.rst

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,23 @@
22
Changelog
33
=========
44

5-
.. Pymunk 6.11.0???
6-
Changes:
7-
- Support pyglet 2.1.x (this means Pyglet 2.0.x wont work )
8-
- Added back Pypy wheels with a workaround since it takes such a long for new Pypy version to come out.
5+
.. Pymunk 6.12?????
6+
Changes....
7+
8+
Pymunk 6.11.0 (2025-01-18)
9+
--------------------------
10+
11+
**Debug draw for Pyglet 2.1**
12+
13+
This is a minor update to Pymunk that update the pyglet debug draw code to
14+
work with the newly released Pyglet 2.1. Note that this means Pyglet 2.0.x
15+
does not work anymore. The release also adds back pre-built wheels for Pypy
16+
with a workaround until Pypy make a new release.
17+
18+
Changes:
19+
- Support pyglet 2.1.x (this means Pyglet 2.0.x wont work)
20+
- Readded Pypy pre-built wheels
21+
922

1023
Pymunk 6.10.0 (2024-12-22)
1124
--------------------------

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: 6.10.0
9-
date-released: 2024-12-22
8+
version: 6.11.0
9+
date-released: 2025-01-18
1010
url: "https://pymunk.org"

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2007-2024 Victor Blomqvist
1+
Copyright (c) 2007-2025 Victor Blomqvist
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Pymunk has been used with success in many projects, big and small. For example:
1616
papers and even in a self-driving car simulation! See the Showcases section on
1717
the Pymunk webpage for some examples.
1818

19-
2007 - 2024, Victor Blomqvist - vb@viblo.se, MIT License
19+
2007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License
2020

21-
This release is based on the latest Pymunk release (6.10.0),
21+
This release is based on the latest Pymunk release (6.11.0),
2222
using Chipmunk2D 7 rev dfc2fb8ca023ce6376fa2cf4a7f91c92ee08a970.
2323

2424

TODO.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ v6.x
5151
- Constraint private accumulated over previous time step properties are not saved when pickle.
5252
- Add a test to check that version property is correctly set matching setup.py (and readme?)
5353
- Make space step size default 1/60, and/or make it possible to set on the space instead of pasing in to step function to make api easier to use "right"
54+
- Remove support for pyglet 1.5 in debug draw. Should be fine now that 2.x has been out for a long time.
55+
- Think about if Pymunk should assert things that Chipmunk already asserts, like if a body can sleep when calling Body.sleep()?
5456

5557
v7+ (all potentially breaking changes)
5658
---

docs/src/ext/autoexample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ----------------------------------------------------------------------------
2-
# Copyright (c) 2007-2024 Victor Blomqvist
2+
# Copyright (c) 2007-2025 Victor Blomqvist
33
#
44
# Permission is hereby granted, free of charge, to any person obtaining a copy
55
# of this software and associated documentation files (the "Software"), to deal

pymunk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/_pyglet15_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal
@@ -32,7 +32,7 @@
3232
cp = _chipmunk_cffi.lib
3333
ffi = _chipmunk_cffi.ffi
3434

35-
version = "6.10.0"
35+
version = "6.11.0"
3636

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

pymunk/pygame_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/pyglet_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pymunk/vec2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# pymunk
3-
# Copyright (c) 2007-2024 Victor Blomqvist
3+
# Copyright (c) 2007-2025 Victor Blomqvist
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010

1111
[project]
1212
name = "pymunk"
13-
version = "6.10.0" # remember to change me for new versions!
13+
version = "6.11.0" # remember to change me for new versions!
1414
# Require cffi >1.14.0 since that (and older) has problem with returing structs from functions.
1515
# Require cffi >= 1.17.1 since older cant work with latest setuptools version
1616
dependencies = [

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy