Skip to content

Commit

Permalink
Relax constraints (#8)
Browse files Browse the repository at this point in the history
Relax constraints
  • Loading branch information
eyurtsev authored Oct 2, 2023
1 parent 9b87d31 commit 72607da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langserve"
version = "0.0.2"
version = "0.0.3"
description = ""
readme = "README.md"
authors = ["LangChain"]
Expand All @@ -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"

Expand Down

0 comments on commit 72607da

Please sign in to comment.