Skip to content

Commit 3503134

Browse files
authored
python-sdk: add Python 3.10+ support (#118)
2 parents 855817e + b9a66f1 commit 3503134

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)