From 72607daec37cea4c92dcb9a9ea7a16516dc74f79 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Mon, 2 Oct 2023 16:27:38 -0400 Subject: [PATCH] Relax constraints (#8) Relax constraints --- poetry.lock | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index 31e68d1c..81351a06 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3794,4 +3794,4 @@ server = ["fastapi", "sse-starlette"] [metadata] lock-version = "2.0" python-versions = ">3.8.1,<4" -content-hash = "e05ba3003172eadf9aad60a8d5a59f288ebe18f4f513392cd765b9210097d10c" +content-hash = "5d831b2af072bb36f7c71a1368a21367f065edb235b02b5aa8faa507bad00f79" diff --git a/pyproject.toml b/pyproject.toml index 82a1bef2..9fc52689 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langserve" -version = "0.0.2" +version = "0.0.3" description = "" readme = "README.md" authors = ["LangChain"] @@ -9,10 +9,10 @@ repository = "https://github.com/langchain-ai/langserve" [tool.poetry.dependencies] python = ">3.8.1,<4" -httpx = "^0.23.0" # May be able to decrease this version -fastapi = {version = ">0.90.1", optional = true} +httpx = ">=0.23.0" # May be able to decrease this version +fastapi = {version = ">=0.90.1", optional = true} sse-starlette = {version = "^1.3.0", optional = true} -httpx-sse = {version = "^0.3.1", optional = true} +httpx-sse = {version = ">=0.3.1", optional = true} pydantic = "^1" langchain = ">=0.0.305"