mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-26 16:43:35 +00:00
Add check to verify poetry.toml (#4794)
# Add poetry check to github action Check poetry toml file during tests for errors
This commit is contained in:
parent
f5a476fdd4
commit
3ecd7c9641
5
.github/actions/poetry_setup/action.yml
vendored
5
.github/actions/poetry_setup/action.yml
vendored
@ -50,6 +50,11 @@ runs:
|
|||||||
- run: pipx install poetry==${{ inputs.poetry-version }} --python python${{ inputs.python-version }}
|
- run: pipx install poetry==${{ inputs.poetry-version }} --python python${{ inputs.python-version }}
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: Check Poetry File
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
poetry check
|
||||||
|
|
||||||
- name: Check lock file
|
- name: Check lock file
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
2
poetry.lock
generated
2
poetry.lock
generated
@ -10256,4 +10256,4 @@ qdrant = ["qdrant-client"]
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = ">=3.8.1,<4.0"
|
python-versions = ">=3.8.1,<4.0"
|
||||||
content-hash = "7b928ba4816f2f3be07a19d9636539c48318d958cc68c88a76672479f5b1d9e4"
|
content-hash = "680f67482c307a7e406431cfdaf286e483db0c6455ae953bd11c01272f0c14e2"
|
||||||
|
@ -61,7 +61,6 @@ aleph-alpha-client = {version="^2.15.0", optional = true}
|
|||||||
deeplake = {version = "^3.3.0", optional = true}
|
deeplake = {version = "^3.3.0", optional = true}
|
||||||
pgvector = {version = "^0.1.6", optional = true}
|
pgvector = {version = "^0.1.6", optional = true}
|
||||||
psycopg2-binary = {version = "^2.9.5", optional = true}
|
psycopg2-binary = {version = "^2.9.5", optional = true}
|
||||||
#boto3 = {version = "^1.26.96", optional = true} # TODO: fix it, commented because the version failed with deeplake
|
|
||||||
pyowm = {version = "^3.3.0", optional = true}
|
pyowm = {version = "^3.3.0", optional = true}
|
||||||
async-timeout = {version = "^4.0.0", python = "<3.11"}
|
async-timeout = {version = "^4.0.0", python = "<3.11"}
|
||||||
azure-identity = {version = "^1.12.0", optional=true}
|
azure-identity = {version = "^1.12.0", optional=true}
|
||||||
@ -175,7 +174,7 @@ in_memory_store = ["docarray"]
|
|||||||
hnswlib = ["docarray", "protobuf", "hnswlib"]
|
hnswlib = ["docarray", "protobuf", "hnswlib"]
|
||||||
embeddings = ["sentence-transformers"]
|
embeddings = ["sentence-transformers"]
|
||||||
azure = ["azure-identity", "azure-cosmos", "openai", "azure-core"]
|
azure = ["azure-identity", "azure-cosmos", "openai", "azure-core"]
|
||||||
all = ["anthropic", "cohere", "openai", "nlpcloud", "huggingface_hub", "jina", "manifest-ml", "elasticsearch", "opensearch-py", "google-search-results", "faiss-cpu", "sentence-transformers", "transformers", "spacy", "nltk", "wikipedia", "beautifulsoup4", "tiktoken", "torch", "jinja2", "pinecone-client", "pinecone-text", "weaviate-client", "redis", "google-api-python-client", "wolframalpha", "qdrant-client", "tensorflow-text", "pypdf", "networkx", "nomic", "aleph-alpha-client", "deeplake", "pgvector", "psycopg2-binary", "boto3", "pyowm", "pytesseract", "html2text", "atlassian-python-api", "gptcache", "duckduckgo-search", "arxiv", "azure-identity", "clickhouse-connect", "azure-cosmos", "lancedb", "lark", "pexpect", "pyvespa", "O365", "jq", "docarray", "protobuf", "hnswlib", "steamship", "pdfminer-six", "gql"]
|
all = ["anthropic", "cohere", "openai", "nlpcloud", "huggingface_hub", "jina", "manifest-ml", "elasticsearch", "opensearch-py", "google-search-results", "faiss-cpu", "sentence-transformers", "transformers", "spacy", "nltk", "wikipedia", "beautifulsoup4", "tiktoken", "torch", "jinja2", "pinecone-client", "pinecone-text", "weaviate-client", "redis", "google-api-python-client", "wolframalpha", "qdrant-client", "tensorflow-text", "pypdf", "networkx", "nomic", "aleph-alpha-client", "deeplake", "pgvector", "psycopg2-binary", "pyowm", "pytesseract", "html2text", "atlassian-python-api", "gptcache", "duckduckgo-search", "arxiv", "azure-identity", "clickhouse-connect", "azure-cosmos", "lancedb", "lark", "pexpect", "pyvespa", "O365", "jq", "docarray", "protobuf", "hnswlib", "steamship", "pdfminer-six", "gql"]
|
||||||
# An extra used to be able to add extended testing.
|
# An extra used to be able to add extended testing.
|
||||||
# Please use new-line on formatting to make it easier to add new packages without
|
# Please use new-line on formatting to make it easier to add new packages without
|
||||||
# merge-conflicts
|
# merge-conflicts
|
||||||
|
Loading…
Reference in New Issue
Block a user