Skip to content

Commit 00131ae

Browse files
committed
Add ci for python 3.10
1 parent da93e74 commit 00131ae

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
fail-fast: false
6767
matrix:
6868
os: [ubuntu-latest, macos-latest]
69-
python-version: ["3.11", "3.12", "3.13"]
69+
python-version: ["3.10", "3.11", "3.12", "3.13"]
7070
steps:
7171
- uses: actions/checkout@v7
7272

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "python-agent-harness"
77
version = "1.5.4.2"
88
description = "A lightweight, hackable mini-OpenCode written in Python."
99
readme = "README.md"
10-
requires-python = ">=3.11"
10+
requires-python = ">=3.10"
1111
authors = [
1212
{ name = "huming" }
1313
]
@@ -53,7 +53,7 @@ python_agent_harness = ["prompts/*.md", "prompts/commands/*.md"]
5353

5454
[tool.ruff]
5555
line-length = 100
56-
target-version = "py311"
56+
target-version = "py310"
5757

5858
[tool.ruff.lint]
5959
# Core pyflakes (F) + pycodestyle error (E), plus import sorting (I),
@@ -65,7 +65,7 @@ ignore = ["E501"]
6565

6666
[tool.pyright]
6767
include = ["python_agent_harness"]
68-
pythonVersion = "3.11"
68+
pythonVersion = "3.10"
6969
# "basic" surfaces the real Optional-access issues without the full strict
7070
# firehose. The tree is clean under this mode and the CI type-check job
7171
# blocks on it.

0 commit comments

Comments
 (0)