Skip to content

Commit dff37f6

Browse files
cbornetmdrxy
andauthored
fix(nomic): support Python 3.14 (#33655)
Pyarrow just published 3.14 binaries Co-authored-by: Mason Daugherty <[email protected]>
1 parent 832036e commit dff37f6

File tree

3 files changed

+310
-198
lines changed

3 files changed

+310
-198
lines changed

.github/scripts/check_diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]:
134134
elif dir_ == "libs/core":
135135
py_versions = ["3.10", "3.11", "3.12", "3.13", "3.14"]
136136
# custom logic for specific directories
137-
elif dir_ in {"libs/partners/chroma", "libs/partners/nomic"}:
137+
elif dir_ in {"libs/partners/chroma"}:
138138
py_versions = ["3.10", "3.13"]
139139
else:
140140
py_versions = ["3.10", "3.14"]

libs/partners/nomic/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires-python = ">=3.10.0,<4.0.0"
99
dependencies = [
1010
"langchain-core>=1.0.0,<2.0.0",
1111
"nomic>=3.5.3,<4.0.0",
12-
"pillow>=10.3.0,<11.0.0",
12+
"pillow>=10.3.0,<12.0.0",
1313
]
1414
name = "langchain-nomic"
1515
version = "1.0.0"
@@ -40,7 +40,7 @@ test = [
4040
test_integration = []
4141
lint = ["ruff>=0.13.1,<0.14.0"]
4242
typing = [
43-
"mypy>=0.991.0,<1.0.0",
43+
"mypy>=1.18.1,<1.19.0",
4444
"langchain-core"
4545
]
4646
dev = ["langchain-core"]

0 commit comments

Comments
 (0)