Skip to content

Commit 0132e31

Browse files
Merge pull request steam-bell-92#1473 from Tomeshwari-02/fix/python-version-support
Clarify supported Python versions
2 parents 5359d7d + 5724b70 commit 0132e31

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### _Learn Python by Building Fun, Interactive Games & Tools!_
88

9-
[![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/)
9+
[![Python Version](https://img.shields.io/badge/python-3.10--3.12-blue.svg)](https://www.python.org/downloads/)
1010
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
1111

1212
<p align="center">
@@ -80,7 +80,7 @@ python-mini-project/
8080

8181
### Prerequisites
8282

83-
- Python 3.10 or higher
83+
- Python 3.10, 3.11, or 3.12
8484
- Git (for cloning the repository)
8585
- pip (Python package manager)
8686

@@ -145,6 +145,8 @@ pip install --upgrade pip
145145
pip install -r requirements.txt
146146
```
147147

148+
The dependency set is tested on Python 3.10 through 3.12. Newer Python releases may not have compatible wheels for every pinned dependency yet.
149+
148150
### Running Command-Line Projects
149151

150152
Each Python project in `games/`, `math/`, and `utilities/` folders can be run independently.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A collection of python mini projects"
55
authors = ["Open Source Contributors"]
66

77
[tool.poetry.dependencies]
8-
python = ">=3.10"
8+
python = ">=3.10,<3.13"
99
pygame = "2.6.1"
1010
numpy = "1.26.4"
1111
matplotlib = "3.8.3"

0 commit comments

Comments
 (0)