Skip to content

Commit 02d0a9a

Browse files
eyurtsevntjohnson1
andauthored
chore(core): unpin packaging dependency (#32032)
Unpin packaging dependency --------- Co-authored-by: ntjohnson1 <[email protected]>
1 parent 953592d commit 02d0a9a

File tree

3 files changed

+1883
-1732
lines changed

3 files changed

+1883
-1732
lines changed

libs/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies = [
1111
"tenacity!=8.4.0,<10.0.0,>=8.1.0",
1212
"jsonpatch<2.0,>=1.33",
1313
"PyYAML>=5.3",
14-
"packaging<25,>=23.2",
1514
"typing-extensions>=4.7",
15+
"packaging>=23.2",
1616
"pydantic>=2.7.4",
1717
]
1818
name = "langchain-core"

libs/core/tests/unit_tests/indexing/test_in_memory_indexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def index(self) -> Generator[DocumentIndex, None, None]:
2424
class TestAsyncDocumentIndexerTestSuite(AsyncDocumentIndexTestSuite):
2525
# Something funky is going on with mypy and async pytest fixture
2626
@pytest.fixture
27-
async def index(self) -> AsyncGenerator[DocumentIndex, None]: # type: ignore[override]
27+
async def index(self) -> AsyncGenerator[DocumentIndex, None]:
2828
yield InMemoryDocumentIndex() # noqa: PT022
2929

3030

0 commit comments

Comments
 (0)