Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core[patch]: Release 0.3.0.dev1 #26072

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
300 changes: 99 additions & 201 deletions libs/core/poetry.lock

Large diffs are not rendered by default.

10 changes: 2 additions & 8 deletions libs/core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "langchain-core"
version = "0.2.38"
version = "0.3.0.dev1"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"
Expand All @@ -30,13 +30,7 @@ jsonpatch = "^1.33"
PyYAML = ">=5.3"
packaging = ">=23.2,<25"
typing-extensions = ">=4.7"
[[tool.poetry.dependencies.pydantic]]
version = ">=1,<3"
python = "<3.12.4"

[[tool.poetry.dependencies.pydantic]]
version = "^2.7.4"
python = ">=3.12.4"
pydantic = ">=2,<3"

[tool.poetry.extras]

Expand Down
3 changes: 3 additions & 0 deletions libs/core/tests/unit_tests/runnables/test_tracing_interops.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ async def my_parent_function(a: int) -> int:
@patch("langchain_core.tracers.langchain.get_client")
@pytest.mark.parametrize("enabled", [None, True, False])
@pytest.mark.parametrize("env", ["", "true"])
@pytest.mark.xfail(
reason="regression in langsmith 0.1.112 and 0.1.113 currently causing this to fail."
)
def test_tracing_enable_disable(
mock_get_client: MagicMock, enabled: bool, env: str
) -> None:
Expand Down
3 changes: 3 additions & 0 deletions libs/core/tests/unit_tests/tracers/test_langchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ def __init__(
self.envvars = envvars
self.expected_project_name = expected_project_name

@pytest.mark.xfail(
reason="regression in langsmith 0.1.112 and 0.1.113 currently causing this to fail."
)
def test_correct_get_tracer_project(self) -> None:
cases = [
self.SetProperTracerProjectTestCase(
Expand Down
2 changes: 1 addition & 1 deletion libs/standard-tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "MIT"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = ">=0.1.40,<0.3"
langchain-core = ">=0.1.40,<0.4"
pytest = ">=7,<9"
httpx = "^0.27.0"
syrupy = "^4"
Expand Down
2 changes: 1 addition & 1 deletion libs/text-splitters/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ignore_missing_imports = "True"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = "^0.2.38"
langchain-core = ">=0.2.38,<0.4"

[tool.ruff.lint]
select = [ "E", "F", "I", "T201",]
Expand Down
Loading