Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"anthropic": {
"package": "anthropic",
"deps": {
"*": ["pytest-asyncio"],
"*": ["pytest-asyncio", "httpx"],
"<0.50": ["httpx<0.28.0"],
# tokenizers dropped Python 3.8 support, but didn't update package metadata.
# https://github.com/huggingface/tokenizers/commit/f4c9fd7f402fc794df8f1b547a95ee5305f9fe62
Expand Down Expand Up @@ -249,7 +249,7 @@
"package": "langchain",
"integration_name": "langchain",
"deps": {
"*": ["pytest-asyncio", "openai", "tiktoken", "langchain-openai"],
"*": ["pytest-asyncio", "openai", "tiktoken", "langchain-openai", "httpx"],
"<=0.1": ["httpx<0.28.0"],
">=0.3": ["langchain-community"],
">=1.0": ["langchain-classic"],
Expand All @@ -263,7 +263,7 @@
"package": "langchain",
"integration_name": "langchain",
"deps": {
"*": ["pytest-asyncio", "openai", "langchain-openai"],
"*": ["pytest-asyncio", "openai", "langchain-openai", "httpx"],
"<=0.1": ["httpx<0.28.0"],
Comment thread
alexander-alderman-webb marked this conversation as resolved.
">=0.3": ["langchain-community"],
">=1.0": ["langchain-classic"],
Expand All @@ -283,7 +283,7 @@
"litellm": {
"package": "litellm",
"deps": {
"*": ["anthropic", "google-genai", "pytest-asyncio"],
"*": ["anthropic", "google-genai", "pytest-asyncio", "httpx"],
},
"include": "<=1.96", # https://github.com/BerriAI/litellm/issues/36384
},
Expand Down Expand Up @@ -323,7 +323,7 @@
"package": "openai",
"integration_name": "openai",
"deps": {
"*": ["pytest-asyncio", "tiktoken"],
"*": ["pytest-asyncio", "tiktoken", "httpx"],
"<1.55": ["httpx<0.28"],
},
"python": {
Expand All @@ -335,7 +335,7 @@
"package": "openai",
"integration_name": "openai",
"deps": {
"*": ["pytest-asyncio"],
"*": ["pytest-asyncio", "httpx"],
"<1.55": ["httpx<0.28"],
},
"python": {
Expand All @@ -346,7 +346,7 @@
"openai_agents": {
"package": "openai-agents",
"deps": {
"*": ["pytest-asyncio"],
"*": ["pytest-asyncio", "httpx"],
},
"python": ">=3.10",
},
Expand Down
Loading