Skip to content

Commit eba16e7

Browse files
committed
Update Python version requirement to 3.10 in README and pyproject.toml
1 parent 6d45907 commit eba16e7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ flake8 whatsapp_api_wrapper/ tests/
413413

414414
## Requirements
415415

416-
- **Python 3.8+**
416+
- **Python 3.10+**
417417
- **WhatsApp Web API server** (from [`../whatsapp-api/`](../whatsapp-api/) directory) running at `http://localhost:3000`
418418
- This is the underlying Node.js API that this wrapper communicates with
419419
- Must be running before using this Python wrapper

docs/comprehensive-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The wrapper communicates with a local Node.js server that handles the actual Wha
4242

4343
### Prerequisites
4444

45-
1. **Python 3.8+** is required
45+
1. **Python 3.10+** is required
4646
2. **WhatsApp API Server** must be running at `http://localhost:3000`
4747
3. **Docker & Docker Compose** for running the API server
4848

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers = [
2929
"Typing :: Typed",
3030
]
3131
keywords = ["whatsapp", "api", "wrapper", "messaging", "chat", "automation", "bot", "whatsapp-web", "pydantic", "httpx"]
32-
requires-python = ">=3.8"
32+
requires-python = ">=3.10"
3333
dependencies = [
3434
"httpx>=0.24.0,<1.0.0",
3535
"pydantic>=2.0.0,<3.0.0",
@@ -115,7 +115,7 @@ ensure_newline_before_comments = true
115115
skip_glob = ["whatsapp-api/*"]
116116

117117
[tool.mypy]
118-
python_version = "3.8"
118+
python_version = "3.10"
119119
warn_return_any = true
120120
warn_unused_configs = true
121121
disallow_untyped_defs = true

0 commit comments

Comments
 (0)