Skip to content

Commit

Permalink
Merge branch 'master' into erick/community-patch-basellm-typing-in-init
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis committed Feb 23, 2024
2 parents 31ea1b8 + 4197efd commit 34afc6f
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 24 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/check_diffs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,22 +126,23 @@ jobs:
# grep will exit non-zero if the target message isn't found,
# and `set -e` above will cause the step to fail.
echo "$STATUS" | grep 'nothing to commit, working tree clean'
ci_end:
ci_success:
name: "CI Success"
needs: [build, lint, test, compile-integration-tests, dependencies, extended-tests]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: "CI Success"
if: ${{ !failure() }}
run: |
echo "Success"
exit 0
# this one is just for visibility, where CI success step gets skipped
ci_failure:
name: "CI Failure"
needs: [build, lint, test, compile-integration-tests, dependencies, extended-tests]
if: ${{ !success() }}
runs-on: ubuntu-latest
steps:
- name: "CI Failure"
if: ${{ failure() }}
run: |
echo "Failure"
exit 1


2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
- name: Codespell
uses: codespell-project/actions-codespell@v2
with:
skip: guide_imports.json
skip: guide_imports.json,*.ambr
ignore_words_list: ${{ steps.extract_ignore_words.outputs.ignore_words_list }}
exclude_file: libs/community/langchain_community/llms/yuan2.py
4 changes: 2 additions & 2 deletions libs/community/poetry.lock

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

4 changes: 2 additions & 2 deletions libs/community/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-community"
version = "0.0.21"
version = "0.0.22"
description = "Community contributed LangChain integrations."
authors = []
license = "MIT"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/langchain-ai/langchain"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = ">=0.1.24,<0.2"
langchain-core = ">=0.1.26,<0.2"
SQLAlchemy = ">=1.4,<3"
requests = "^2"
PyYAML = ">=5.3"
Expand Down
4 changes: 2 additions & 2 deletions libs/langchain/poetry.lock

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

4 changes: 2 additions & 2 deletions libs/langchain/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain"
version = "0.1.8"
version = "0.1.9"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"
Expand All @@ -12,7 +12,7 @@ langchain-server = "langchain.server:main"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = ">=0.1.24,<0.2"
langchain-core = ">=0.1.26,<0.2"
langchain-community = ">=0.0.21,<0.1"
langsmith = "^0.1.0"
pydantic = ">=1,<3"
Expand Down
12 changes: 6 additions & 6 deletions libs/partners/openai/poetry.lock

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

4 changes: 2 additions & 2 deletions libs/partners/openai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-openai"
version = "0.0.6"
version = "0.0.7"
description = "An integration package connecting OpenAI and LangChain"
authors = []
readme = "README.md"
Expand All @@ -12,7 +12,7 @@ license = "MIT"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = "^0.1.16"
langchain-core = "^0.1.26"
openai = "^1.10.0"
numpy = "^1"
tiktoken = ">=0.5.2,<1"
Expand Down

0 comments on commit 34afc6f

Please sign in to comment.