Fix dateutil dependency issue (#741)
This is the quick fix for placing the dateutil as a required dep instead of as an 'extra' dep. This is the second time in one week that a missing dependency has bitten us. I've created a ticket (TOO-317) to catch this class of bugs in our CI pipeline.
This commit is contained in:
parent
7c448aaf2e
commit
a941eb7ffe
1 changed files with 2 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "arcade-mcp"
|
name = "arcade-mcp"
|
||||||
version = "1.8.1"
|
version = "1.8.2"
|
||||||
description = "Arcade.dev - Tool Calling platform for Agents"
|
description = "Arcade.dev - Tool Calling platform for Agents"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = { file = "LICENSE" }
|
license = { file = "LICENSE" }
|
||||||
|
|
@ -28,6 +28,7 @@ dependencies = [
|
||||||
"arcadepy==1.8.0",
|
"arcadepy==1.8.0",
|
||||||
"tqdm==4.67.1",
|
"tqdm==4.67.1",
|
||||||
"click==8.1.8",
|
"click==8.1.8",
|
||||||
|
"python-dateutil>=2.8.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
|
|
@ -41,7 +42,6 @@ all = [
|
||||||
"numpy>=2.0.0",
|
"numpy>=2.0.0",
|
||||||
"scikit-learn>=1.5.0",
|
"scikit-learn>=1.5.0",
|
||||||
"pytz>=2024.1",
|
"pytz>=2024.1",
|
||||||
"python-dateutil>=2.8.2",
|
|
||||||
# mcp server
|
# mcp server
|
||||||
"arcade-mcp-server>=1.14.0,<2.0.0",
|
"arcade-mcp-server>=1.14.0,<2.0.0",
|
||||||
# serve
|
# serve
|
||||||
|
|
@ -60,7 +60,6 @@ evals = [
|
||||||
"numpy>=2.0.0",
|
"numpy>=2.0.0",
|
||||||
"scikit-learn>=1.5.0",
|
"scikit-learn>=1.5.0",
|
||||||
"pytz>=2024.1",
|
"pytz>=2024.1",
|
||||||
"python-dateutil>=2.8.2",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.uv]
|
[tool.uv]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue