Skip to content

Commit aab0fa9

Browse files
committed
python >= 3.11
1 parent 3e8eeb3 commit aab0fa9

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12"]
15+
python-version: ["3.11", "3.12"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ A simple library to document [Pydantic](https://docs.pydantic.dev/) models for s
88
pip install pydantic-prompt
99
```
1010

11+
## Requirements
12+
13+
- Python 3.11 or higher
14+
- Pydantic 2.0 or higher
15+
1116
## Features
1217

1318
- Document Pydantic model fields using standard Python docstrings

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
dependencies = [
2323
"pydantic>=2.0.0",
2424
]
25-
requires-python = ">=3.10"
25+
requires-python = ">=3.11"
2626

2727
[project.optional-dependencies]
2828
dev = [

0 commit comments

Comments
 (0)