Skip to content

Commit

Permalink
[CLI] Relax constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Nov 19, 2024
1 parent 5599a0a commit 187fd69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions libs/cli/poetry.lock

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

10 changes: 5 additions & 5 deletions libs/cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-cli"
version = "0.0.31"
version = "0.0.32"
description = "CLI for interacting with LangChain"
authors = ["Erick Friis <[email protected]>"]
readme = "README.md"
Expand All @@ -14,11 +14,11 @@ license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
typer = { extras = ["all"], version = "^0.9.0" }
gitpython = "^3.1.40"
gitpython = ">=3.0,<4.0"
langserve = { extras = ["all"], version = ">=0.0.51" }
uvicorn = "^0.23.2"
tomlkit = "^0.12.2"
gritql = "^0.1.1"
uvicorn = ">=0.23,<1.0"
tomlkit = ">=0.12.0,<1.0"
gritql = ">=0.1.0,<1.0"

[tool.poetry.scripts]
langchain = "langchain_cli.cli:app"
Expand Down

0 comments on commit 187fd69

Please sign in to comment.