mirror of
https://github.com/hwchase17/langchain.git
synced 2026-04-03 19:04:23 +00:00
fix(chroma): fix Python 3.14 support in langchain-chroma (#36199)
Latest chromadb version supports Python 3.14 and pydantic 3.12. Co-authored-by: Mason Daugherty <mason@langchain.dev>
This commit is contained in:
committed by
GitHub
parent
c7a677bba5
commit
494b760028
5
.github/scripts/check_diff.py
vendored
5
.github/scripts/check_diff.py
vendored
@@ -142,11 +142,8 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]:
|
||||
"codspeed-mode": mode,
|
||||
}
|
||||
]
|
||||
elif dir_ == "libs/core":
|
||||
if dir_ == "libs/core":
|
||||
py_versions = ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
||||
# custom logic for specific directories
|
||||
elif dir_ in {"libs/partners/chroma"}:
|
||||
py_versions = ["3.10", "3.13"]
|
||||
else:
|
||||
py_versions = ["3.10", "3.14"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user