Skip to content

Commit bc6d814

Browse files
authored
Merge pull request unclecode#1451 from unclecode/fix/remove-python3.9-version
Remove python 3.9 from supported versions and require Python >= 3.10
2 parents 4878396 + 70f473b commit bc6d814

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

deploy/docker/c4ai-doc-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2241,7 +2241,7 @@ docker build -t crawl4ai
22412241

22422242
| Argument | Description | Default | Options |
22432243
|----------|-------------|---------|----------|
2244-
| PYTHON_VERSION | Python version | 3.10 | 3.8, 3.9, 3.10 |
2244+
| PYTHON_VERSION | Python version | 3.10 | 3.10, 3.11, 3.12, 3.13 |
22452245
| INSTALL_TYPE | Feature set | default | default, all, torch, transformer |
22462246
| ENABLE_GPU | GPU support | false | true, false |
22472247
| APP_HOME | Install path | /app | any valid path |

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "Crawl4AI"
77
dynamic = ["version"]
88
description = "🚀🤖 Crawl4AI: Open-source LLM Friendly Web Crawler & scraper"
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
license = "Apache-2.0"
1212
authors = [
1313
{name = "Unclecode", email = "unclecode@kidocode.com"}
@@ -52,7 +52,6 @@ classifiers = [
5252
"Development Status :: 4 - Beta",
5353
"Intended Audience :: Developers",
5454
"Programming Language :: Python :: 3",
55-
"Programming Language :: Python :: 3.9",
5655
"Programming Language :: Python :: 3.10",
5756
"Programming Language :: Python :: 3.11",
5857
"Programming Language :: Python :: 3.12",

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,10 @@
5656
"Development Status :: 3 - Alpha",
5757
"Intended Audience :: Developers",
5858
"Programming Language :: Python :: 3",
59-
"Programming Language :: Python :: 3.9",
6059
"Programming Language :: Python :: 3.10",
6160
"Programming Language :: Python :: 3.11",
6261
"Programming Language :: Python :: 3.12",
6362
"Programming Language :: Python :: 3.13",
6463
],
65-
python_requires=">=3.9",
64+
python_requires=">=3.10",
6665
)

0 commit comments

Comments
 (0)