Skip to content

Commit 81e3efb

Browse files
committed
Drop Python 3.9 support, require >=3.10
1 parent 1b1fafc commit 81e3efb

2 files changed

Lines changed: 85 additions & 862 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "teaagent"
77
version = "0.1.0"
88
description = "Governance-first agent harness for autonomous coding tasks."
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
license = {file = "LICENSE"}
1212
keywords = ["agent", "governance", "mcp", "audit", "llm"]
1313
classifiers = [
@@ -16,7 +16,6 @@ classifiers = [
1616
"License :: OSI Approved :: MIT License",
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
2221
"Programming Language :: Python :: 3.12",
@@ -71,7 +70,7 @@ testpaths = ["tests"]
7170
pythonpath = ["."]
7271

7372
[tool.mypy]
74-
python_version = "3.9"
73+
python_version = "3.10"
7574
ignore_missing_imports = true
7675
exclude = ["tests/"]
7776
disallow_untyped_defs = true

0 commit comments

Comments
 (0)