chore(core): unpin packaging dependency (#32032)

Unpin packaging dependency

---------

Co-authored-by: ntjohnson1 <24689722+ntjohnson1@users.noreply.github.com>
This commit is contained in:
Eugene Yurtsev 2025-07-14 17:42:32 -04:00 committed by GitHub
parent 953592d4f7
commit 02d0a9af6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1854 additions and 1703 deletions

View File

@ -11,8 +11,8 @@ dependencies = [
"tenacity!=8.4.0,<10.0.0,>=8.1.0",
"jsonpatch<2.0,>=1.33",
"PyYAML>=5.3",
"packaging<25,>=23.2",
"typing-extensions>=4.7",
"packaging>=23.2",
"pydantic>=2.7.4",
]
name = "langchain-core"

View File

@ -24,7 +24,7 @@ class TestDocumentIndexerTestSuite(DocumentIndexerTestSuite):
class TestAsyncDocumentIndexerTestSuite(AsyncDocumentIndexTestSuite):
# Something funky is going on with mypy and async pytest fixture
@pytest.fixture
async def index(self) -> AsyncGenerator[DocumentIndex, None]: # type: ignore[override]
async def index(self) -> AsyncGenerator[DocumentIndex, None]:
yield InMemoryDocumentIndex() # noqa: PT022

File diff suppressed because it is too large Load Diff