Skip to content

Commit

Permalink
restrict fastapi, lock langsmith higher version (#227)
Browse files Browse the repository at this point in the history
2 changes:
- restrict fastapi version to <1, so it doesn't break the cli test
release (test.pypi.org has a fastapi==1 version that is unrelated to
real fastapi)
- upgrade langsmith in the lockfile to 0.0.64 (from 0.0.62, which was
yanked)

Some unrelated lockfile changes also happened. Happy to try to revert
those but a bit unclear how.
  • Loading branch information
efriis authored Nov 15, 2023
1 parent 7372bcf commit e6323af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 92 deletions.
98 changes: 7 additions & 91 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include = ["langserve/playground/dist/**/*"]
[tool.poetry.dependencies]
python = "^3.8.1"
httpx = ">=0.23.0" # May be able to decrease this version
fastapi = {version = ">=0.90.1", optional = true}
fastapi = {version = ">=0.90.1,<1", optional = true}
sse-starlette = {version = "^1.3.0", optional = true}
httpx-sse = {version = ">=0.3.1", optional = true}
pydantic = ">=1"
Expand Down

0 comments on commit e6323af

Please sign in to comment.