Skip to content

Commit 1731b06

Browse files
committed
Do not build/support python 3.7 anymore
1 parent 6e9b0ed commit 1731b06

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: pypa/cibuildwheel@v2.20.0
2525
env:
2626
CIBW_BUILD:
27-
"cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp39-* pp310-*"
27+
"cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp39-* pp310-*"
2828
CIBW_TEST_COMMAND: "python -m pymunk.tests"
2929
CIBW_BUILD_VERBOSITY: 3
3030
with:

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Dependencies / Requirements
131131
Basically Pymunk have been made to be as easy to install and distribute as
132132
possible, usually `pip install` will take care of everything for you.
133133

134-
- Python (Runs on CPython 3.7 and later and Pypy3)
134+
- Python (Runs on CPython 3.8 and later and Pypy3)
135135
- Chipmunk (Prebuilt and included when using binary wheels)
136136
- CFFI (will be installed automatically by Pip)
137137
- Setuptools (should be included with Pip)
@@ -152,6 +152,7 @@ Older Pythons
152152

153153
- Support for Python 2 (and Python 3.0 - 3.5) was dropped with Pymunk 6.0.
154154
- Support for Python 3.6 was dropped with Pymunk 6.5.2.
155+
- Support for Python 3.7 was dropped with Pymunk 6.8.2
155156

156157
If you use any of these legacy versions of Python, please use an older
157158
Pymunk version. (It might work on newer Pymunks as well, but it's not tested,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
2626
]
27-
requires-python = ">=3.7"
27+
requires-python = ">=3."
2828
[project.optional-dependencies]
2929
dev = [
3030
"pyglet < 2.0.0",

0 commit comments

Comments
 (0)