Skip to content

Commit b8d9ede

Browse files
committed
Raise minimum Python version to 3.11
1 parent fe96a34 commit b8d9ede

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
1313
## [Unreleased]
1414

15+
### Changed
16+
17+
- **BREAKING**: Raise the minimum required Python version to 3.11.
18+
1519
### Fixed
1620

1721
- Remove syntax that prevented compatibility with Python 3.10 and 3.11.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Ease of use, flexibility, and complete API support are top priorities.
1616

1717
libretro.py has the following requirements:
1818

19-
- Python 3.10 or newer.
19+
- Python 3.11 or newer.
2020
May not work on alternative Python implementations like PyPy.
2121
- Supported on Windows, macOS, and Linux.
2222
May work on other platforms, but no promises.
@@ -30,7 +30,7 @@ For details, run `just` (no arguments) in the project root.
3030

3131
# Installing
3232

33-
libretro.py supports **Python 3.10 or newer**.
33+
libretro.py supports **Python 3.11 or newer**.
3434
Nothing else is required for most functionality,
3535
but some extra features have additional dependencies.
3636

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libretro.py"
33
dynamic = ["version"]
44
description = "A libretro frontend for Python intended for testing cores."
55
readme = "README.md"
6-
requires-python = ">=3.10"
6+
requires-python = ">=3.11"
77
license = {text = "MIT License"}
88
authors = [
99
{name = "Jesse Talavera", email = "[email protected]"},
@@ -23,7 +23,6 @@ classifiers = [
2323
"Operating System :: POSIX",
2424
"Operating System :: POSIX :: Linux",
2525
"Programming Language :: C",
26-
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
2928
"Topic :: Games/Entertainment",

0 commit comments

Comments
 (0)