Merge pull request #1451 from unclecode/fix/remove-python3.9-version

Remove python 3.9 from supported versions and require Python >= 3.10
This commit is contained in:
Nasrin
2025-09-02 16:50:40 +08:00
committed by GitHub
3 changed files with 3 additions and 5 deletions

View File

@@ -2241,7 +2241,7 @@ docker build -t crawl4ai
| Argument | Description | Default | Options | | Argument | Description | Default | Options |
|----------|-------------|---------|----------| |----------|-------------|---------|----------|
| PYTHON_VERSION | Python version | 3.10 | 3.8, 3.9, 3.10 | | PYTHON_VERSION | Python version | 3.10 | 3.10, 3.11, 3.12, 3.13 |
| INSTALL_TYPE | Feature set | default | default, all, torch, transformer | | INSTALL_TYPE | Feature set | default | default, all, torch, transformer |
| ENABLE_GPU | GPU support | false | true, false | | ENABLE_GPU | GPU support | false | true, false |
| APP_HOME | Install path | /app | any valid path | | APP_HOME | Install path | /app | any valid path |

View File

@@ -7,7 +7,7 @@ name = "Crawl4AI"
dynamic = ["version"] dynamic = ["version"]
description = "🚀🤖 Crawl4AI: Open-source LLM Friendly Web Crawler & scraper" description = "🚀🤖 Crawl4AI: Open-source LLM Friendly Web Crawler & scraper"
readme = "README.md" readme = "README.md"
requires-python = ">=3.9" requires-python = ">=3.10"
license = "Apache-2.0" license = "Apache-2.0"
authors = [ authors = [
{name = "Unclecode", email = "unclecode@kidocode.com"} {name = "Unclecode", email = "unclecode@kidocode.com"}
@@ -52,7 +52,6 @@ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",

View File

@@ -56,11 +56,10 @@ setup(
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",
], ],
python_requires=">=3.9", python_requires=">=3.10",
) )