From fd8190e21674d5286b717fe8fb00c875561b76e7 Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Thu, 17 Oct 2024 16:36:29 -0700 Subject: [PATCH] Update arcade version in web toolkit toml (#113) When #110 was merged the build failed with: ``` 9.372 Installing toolkit ./toolkits/arcade_web-2024.10.17.dev0-py3-none-any.whl 9.687 Processing ./toolkits/arcade_web-2024.10.17.dev0-py3-none-any.whl 9.749 Collecting firecrawl-py<2.0.0,>=1.3.1 9.872 Downloading firecrawl_py-1.3.1-py3-none-any.whl (15 kB) 9.911 ERROR: Could not find a version that satisfies the requirement arcade-ai<0.2.0,>=0.1.0 (from arcade-web) (from versions: 0.0.1, 0.0.13) 9.911 ERROR: No matching distribution found for arcade-ai<0.2.0,>=0.1.0 ``` and I believe this fixes the issue --- toolkits/web/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkits/web/pyproject.toml b/toolkits/web/pyproject.toml index 872024ad..cec3c3f1 100644 --- a/toolkits/web/pyproject.toml +++ b/toolkits/web/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Arcade AI "] [tool.poetry.dependencies] python = "^3.10" -arcade-ai = "^0.1.0" +arcade-ai = "0.1.*" firecrawl-py = "^1.3.1" [tool.poetry.dev-dependencies]