Skip to content

Commit b9a66f1

Browse files
diegofornalhaclaude
andcommitted
feat(python-sdk): add Python 3.10+ support
The SDK codebase is fully compatible with Python 3.10+ as it only uses: - Standard library modules (datetime, pathlib, json, typing, dataclasses) - Type hints with union syntax (X | None) - available since Python 3.10 - No Python 3.12-specific features Changes: - Update requires-python from >=3.12 to >=3.10 - Add Python 3.10 and 3.11 classifiers - Update ruff target-version to py310 This enables broader adoption for users on LTS Python versions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 099326d commit b9a66f1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

sdk/python/pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "agentfs-sdk"
77
version = "0.4.0-pre.2"
88
description = "AgentFS Python SDK - A filesystem and key-value store for AI agents"
99
readme = "README.md"
10-
requires-python = ">=3.12"
10+
requires-python = ">=3.10"
1111
license = {text = "MIT"}
1212
keywords = ["ai", "agent", "turso", "sqlite", "key-value", "filesystem"]
1313
authors = [
@@ -21,6 +21,8 @@ classifiers = [
2121
'Operating System :: Microsoft :: Windows',
2222
'Operating System :: MacOS',
2323
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2426
"Programming Language :: Python :: 3.12",
2527
"Topic :: Software Development :: Libraries :: Python Modules",
2628
]
@@ -48,7 +50,7 @@ include = ["agentfs_sdk*"]
4850

4951
[tool.ruff]
5052
line-length = 100
51-
target-version = "py312"
53+
target-version = "py310"
5254

5355
[tool.ruff.lint]
5456
select = ["E", "F", "I"]

0 commit comments

Comments
 (0)