Skip to content

Commit 805a3d1

Browse files
authored
Lower Python requirement to >=3.9 (#71)
1 parent e53143c commit 805a3d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
code-quality:
1111
strategy:
1212
matrix:
13-
python: ["3.10", "3.11", "3.12", "3.13"]
13+
python: ["3.9","3.10", "3.11", "3.12", "3.13"]
1414

1515
runs-on: ubuntu-latest
1616

.github/workflows/sanity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
platform: ["ubuntu-latest", "macos-latest", "windows-latest"]
14-
python: ["3.10", "3.11", "3.12", "3.13"]
14+
python: ["3.9","3.10", "3.11", "3.12", "3.13"]
1515

1616
runs-on: ${{ matrix.platform }}
1717

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
]
2727
description = "AI-assisted debugging. Uses AI to answer 'why'."
2828
readme = "README.md"
29-
requires-python = ">=3.10"
29+
requires-python = ">=3.9"
3030
classifiers = [
3131
"Programming Language :: Python :: 3",
3232
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)