Skip to content

Commit 6b7abe2

Browse files
authored
Merge pull request #19 from mozilla-ai/macaab26/changing_langchain_versions
Updating langchain versions for the tests
2 parents fe133c1 + 911cf05 commit 6b7abe2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,5 +267,5 @@ jobs:
267267
token: ${{ secrets.GITHUB_TOKEN }}
268268
draft: false
269269
generateReleaseNotes: true
270-
tag: ${{ inputs.working-directory }}/v${{ needs.build.outputs.version }}
270+
tag: ${{ inputs.working-directory == '.' && format('v{0}', needs.build.outputs.version) || format('{0}/v{1}', inputs.working-directory, needs.build.outputs.version) }}
271271
commit: ${{ github.sha }}

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "langchain-anyllm"
7-
version = "0.0.1a1"
7+
version = "0.0.1a2"
88
description = "An integration package connecting LangChain with AnyLLM"
99
readme = "README.md"
1010
license = {text = "MIT"}
1111
authors = []
1212
requires-python = ">=3.11,<3.14"
1313
dependencies = [
14-
"langchain-core>=0.3.29,<2.0",
14+
"langchain-core>=1.0.0,<2.0",
1515
"any-llm-sdk[anthropic]>=1.0.0,<2.0",
1616
]
1717

@@ -49,8 +49,8 @@ select = [
4949
]
5050

5151
[tool.mypy]
52-
disallow_untyped_defs = "True"
53-
ignore_missing_imports = "True"
52+
disallow_untyped_defs = true
53+
ignore_missing_imports = true
5454

5555
[tool.coverage.run]
5656
omit = ["tests/*"]

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)