Skip to content

Commit 22c907d

Browse files
committed
feat: add Python 3.10 support
- Update requires-python to >=3.10 - Add Python 3.10 classifier - Add Python 3.10 to CI test matrix
1 parent b10c164 commit 22c907d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:
40-
python-version: ["3.11", "3.13"]
40+
python-version: ["3.10", "3.11", "3.13"]
4141
steps:
4242
- name: Checkout repository
4343
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackone-ai"
33
version = "2.0.0"
44
description = "agents performing actions on your SaaS"
55
readme = "README.md"
6-
requires-python = ">=3.11"
6+
requires-python = ">=3.10"
77
authors = [
88
{ name = "StackOne", email = "support@stackone.com" }
99
]
@@ -12,6 +12,7 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python :: 3",
15+
"Programming Language :: Python :: 3.10",
1516
"Programming Language :: Python :: 3.11",
1617
"Programming Language :: Python :: 3.12",
1718
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)