Skip to content

Commit

Permalink
Do not build/support python 3.7 anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
viblo committed Sep 8, 2024
1 parent 6e9b0ed commit 1731b06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD:
"cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp39-* pp310-*"
"cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp39-* pp310-*"
CIBW_TEST_COMMAND: "python -m pymunk.tests"
CIBW_BUILD_VERBOSITY: 3
with:
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Dependencies / Requirements
Basically Pymunk have been made to be as easy to install and distribute as
possible, usually `pip install` will take care of everything for you.

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

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

If you use any of these legacy versions of Python, please use an older
Pymunk version. (It might work on newer Pymunks as well, but it's not tested,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
requires-python = ">=3."
[project.optional-dependencies]
dev = [
"pyglet < 2.0.0",
Expand Down

0 comments on commit 1731b06

Please sign in to comment.