milvus: 0.1.6 release (#26538)

Release to work with langchain 0.3
This commit is contained in:
Eugene Yurtsev 2024-09-16 13:33:09 -04:00 committed by GitHub
parent 5b4206acd8
commit 8b985a42e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. # This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand.
[[package]] [[package]]
name = "annotated-types" name = "annotated-types"
@ -515,7 +515,7 @@ files = [
[[package]] [[package]]
name = "langchain-core" name = "langchain-core"
version = "0.3.0.dev4" version = "0.3.0"
description = "Building applications with LLMs through composability" description = "Building applications with LLMs through composability"
optional = false optional = false
python-versions = ">=3.9,<4.0" python-versions = ">=3.9,<4.0"
@ -524,9 +524,12 @@ develop = true
[package.dependencies] [package.dependencies]
jsonpatch = "^1.33" jsonpatch = "^1.33"
langsmith = "^0.1.112" langsmith = "^0.1.117"
packaging = ">=23.2,<25" packaging = ">=23.2,<25"
pydantic = "^2.7.4" pydantic = [
{version = ">=2.5.2,<3.0.0", markers = "python_full_version < \"3.12.4\""},
{version = ">=2.7.4,<3.0.0", markers = "python_full_version >= \"3.12.4\""},
]
PyYAML = ">=5.3" PyYAML = ">=5.3"
tenacity = "^8.1.0,!=8.4.0" tenacity = "^8.1.0,!=8.4.0"
typing-extensions = ">=4.7" typing-extensions = ">=4.7"
@ -2250,4 +2253,4 @@ watchmedo = ["PyYAML (>=3.10)"]
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = ">=3.9,<4.0" python-versions = ">=3.9,<4.0"
content-hash = "729248929e543a50f84ba78d565a3eee720318dc83fecba012f2b336d4af86e9" content-hash = "0cfacd60fff25de0b07733f2f3fb7676e4937ba6fb78c03411a30a2462ece628"

View File

@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry] [tool.poetry]
name = "langchain-milvus" name = "langchain-milvus"
version = "0.1.5" version = "0.1.6"
description = "An integration package connecting Milvus and LangChain" description = "An integration package connecting Milvus and LangChain"
authors = [] authors = []
readme = "README.md" readme = "README.md"
@ -26,8 +26,9 @@ ignore_missing_imports = "True"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.9,<4.0" python = ">=3.9,<4.0"
langchain-core = "^0.3.0.dev" langchain-core = "^0.3"
pymilvus = "^2.4.3" pymilvus = "^2.4.3"
[[tool.poetry.dependencies.scipy]] [[tool.poetry.dependencies.scipy]]
version = "^1.7" version = "^1.7"
python = "<3.12" python = "<3.12"