Skip to content

Commit 3448a6a

Browse files
authored
chore: constrain python version (#1)
Signed-off-by: Panos Vagenas <[email protected]>
1 parent 76720ab commit 3448a6a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
9+
python-version: ['3.9', '3.10', '3.11', '3.12']
1010
steps:
1111
- uses: actions/checkout@v4
1212
- uses: ./.github/actions/setup-poetry

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
packages = [{include = "docling_langchain"}]
2020

2121
[tool.poetry.dependencies]
22-
python = "^3.9"
22+
python = ">=3.9,<3.13"
2323
langchain-core = "^0.3.0"
2424
docling = "^2.14.0"
2525

0 commit comments

Comments
 (0)