Skip to content

Commit b032302

Browse files
committed
temp: run tests with python 3.14
1 parent 3c4087e commit b032302

File tree

13 files changed

+25
-1377
lines changed

13 files changed

+25
-1377
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
python-version: ["3.11", "3.12", "3.13"]
19+
python-version: ["3.14"]
2020
os: [ubuntu-latest, windows-latest]
2121

2222
permissions:

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11
1+
3.14

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "uipath-langchain"
33
version = "0.9.30"
44
description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
6-
requires-python = ">=3.11"
6+
requires-python = ">=3.14"
77
dependencies = [
88
"uipath>=2.10.49, <2.11.0",
99
"uipath-core>=0.5.2, <0.6.0",

testcases/chat-models/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"aiohttp>=3.11.12",
1515
"typing-extensions>=4.12.2",
1616
]
17-
requires-python = ">=3.11"
17+
requires-python = ">=3.14"
1818

1919
[tool.uv.sources]
2020
uipath-langchain = { path = "../../", editable = true }

testcases/company-research-agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.1"
44
description = "Company research agent with Tavily web search"
55
authors = [{ name = "John Doe", email = "john.doe@myemail.com" }]
66

7-
requires-python = ">=3.11"
7+
requires-python = ">=3.14"
88
dependencies = [
99
"uipath-langchain",
1010
"langgraph>=1.0.1",

testcases/debug-breakpoints/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
"pytest>=8.0.0",
1717
"pytest-asyncio>=0.24.0",
1818
]
19-
requires-python = ">=3.11"
19+
requires-python = ">=3.14"
2020

2121
[tool.uv.sources]
2222
uipath-langchain = { path = "../../", editable = true }

testcases/dev-console/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
"pytest>=8.0.0",
1717
"pytest-asyncio>=0.24.0",
1818
]
19-
requires-python = ">=3.11"
19+
requires-python = ">=3.14"
2020

2121
[tool.uv.sources]
2222
uipath-langchain = { path = "../../", editable = true }

testcases/init-flow/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies = [
77
"langchain-anthropic>=0.3.8",
88
"uipath-langchain",
99
]
10-
requires-python = ">=3.11"
10+
requires-python = ">=3.14"
1111

1212
[tool.uv.sources]
1313
uipath-langchain = { path = "../../", editable = true }

testcases/multimodal-invoke/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies = [
1010
"uipath-langchain[vertex,bedrock]",
1111
"pydantic>=2.10.6",
1212
]
13-
requires-python = ">=3.11"
13+
requires-python = ">=3.14"
1414

1515
[tool.uv.sources]
1616
uipath-langchain = { path = "../../", editable = true }

testcases/simple-local-mcp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies = [
1717
"ipython>=8.32.0",
1818
"mcp>=1.4.1",
1919
]
20-
requires-python = ">=3.11"
20+
requires-python = ">=3.14"
2121

2222
[tool.uv.sources]
2323
uipath-langchain = { path = "../../", editable = true }

0 commit comments

Comments
 (0)