Skip to content

Commit

Permalink
Fix dependencies (#977)
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanTrem authored Aug 24, 2024
1 parent 0a26390 commit 6f2708d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
26 changes: 13 additions & 13 deletions py/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 py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "r2r"
readme = "README.md"
version = "0.3.1"
version = "0.3.2"
description = "SciPhi R2R"
authors = ["Owen Colegrove <[email protected]>"]
license = "MIT"
Expand All @@ -24,16 +24,16 @@ python = ">=3.9,<3.13"
httpx = "^0.27.0"
nest-asyncio = "^1.6.0"
fastapi = "^0.109.2"
requests = "^2.31.0"
types-requests = "^2.31.0"
click = "^8.0.0"

# Core dependencies (optional)
openai = { version = "^1.11.1" }

openai = { version = "^1.11.1", optional = true }
pydantic = { extras = ["email"], version = "^2.8.2", optional = true }
python-multipart = { version = "^0.0.9", optional = true }
fire = { version = "^0.5.0", optional = true }
gunicorn = { version = "^21.2.0", optional = true }
requests = { version = "^2.31.0", optional = true }
types-requests = { version = "^2.31.0", optional = true }
uvicorn = { version = "^0.27.0.post1", optional = true }
aiosqlite = { version = "^0.20.0", optional = true }
asyncpg = { version = "^0.29.0", optional = true }
Expand Down

0 comments on commit 6f2708d

Please sign in to comment.