Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# so linting on fewer versions makes CI faster.
python-version:
- "3.10"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
description: "From which folder this pipeline executes"

env:
PYTHON_VERSION: "3.11"
PYTHON_VERSION: "3.14"
POETRY_VERSION: "1.7.1"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
python-version:
- "3.10"
- "3.13"
- "3.14"

env:
OS: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
POETRY_VERSION: "1.7.1"
PYTHON_VERSION: "3.10"
PYTHON_VERSION: "3.14"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.10'
python-version: '3.14'
- id: files
uses: Ana06/[email protected]
- id: set-matrix
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# LangChain CrateDB Adapter Changelog

## Unreleased
- Verified support for Python 3.14
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Changelog entry is inconsistent with PR status.

The entry states "Verified support for Python 3.14," but the PR description indicates that the update currently fails with an upstream issue. Consider rewording this to reflect the work-in-progress status:

-- Verified support for Python 3.14
+- Add Python 3.14 support (pending upstream dependency updates)

or remove this entry until support is actually verified and working.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Verified support for Python 3.14
- Add Python 3.14 support (pending upstream dependency updates)
🤖 Prompt for AI Agents
In CHANGES.md around line 4, the changelog line "Verified support for Python
3.14" is inconsistent with the PR which states the update currently fails due to
an upstream issue; change the entry to reflect work-in-progress or remove it.
Either replace the line with a WIP phrasing such as "Work in progress: attempted
Python 3.14 support (blocked by upstream issue #XYZ)" including the issue
reference, or delete the entry until support is fully verified and passing.


## v0.2.0 - 2025-12-12
- Updated to langchain 1.x
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Documentation",
Expand Down