Skip to content

Commit ef2b4e3

Browse files
authored
docs: fix Python version requirement to 3.10+ (#131)
Update documentation to match pyproject.toml which specifies requires-python = ">=3.10". The docs incorrectly stated 3.11+.
1 parent 0c4658c commit ef2b4e3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.claude/rules/development-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This rule provides code style guidelines and project conventions for the StackOn
1717
## Type Annotations
1818

1919
- Full type annotations required for all public APIs
20-
- Use Python 3.11+ typing features
20+
- Use Python 3.10+ typing features
2121
- Run `just ty` to verify type correctness
2222
- Strict ty configuration is enforced
2323

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ toolset = StackOneToolSet(
9494

9595
### Type Safety
9696

97-
- Full type annotations required (Python 3.11+)
97+
- Full type annotations required (Python 3.10+)
9898
- Strict ty configuration
9999
- Use generics for better IDE support
100100

@@ -108,7 +108,7 @@ toolset = StackOneToolSet(
108108

109109
1. **Dependencies**: See `package-installation` rule for uv dependency management
110110
2. **Pre-commit**: Hooks configured for ruff and ty - run on all commits
111-
3. **Python Version**: Requires Python >=3.11
111+
3. **Python Version**: Requires Python >=3.10
112112
4. **Error Handling**: Custom exceptions (`StackOneError`, `StackOneAPIError`)
113113
5. **File Uploads**: Binary parameters auto-detected from OpenAPI specs
114114
6. **Context Window**: Tool loading warns when loading all tools (large context)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ StackOne AI provides a unified interface for accessing various SaaS tools throug
2828

2929
## Requirements
3030

31-
- Python 3.11+
31+
- Python 3.10+
3232

3333
## Installation
3434

0 commit comments

Comments
 (0)