From 1b5788ef0eb1d12bc9ef6b31238c3202f1469efa Mon Sep 17 00:00:00 2001 From: Jason Schleifer Date: Thu, 9 Jan 2025 09:07:36 +1300 Subject: [PATCH] version bump and really fixed library --- CHANGELOG.md | 4 ++++ pyproject.toml | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9c6094..9059240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security --> +## [2.1.08] - 2025-09-01 +### Fixed +- incorrectly identified attrs and openai library versions in pyproject. + ## [2.1.07] - 2025-09-01 ### Fixed - Set Default Driver wasn't working correctly due to API key not being saved (https://github.com/griptape-ai/ComfyUI-Griptape/issues/220). That's now resolved. diff --git a/pyproject.toml b/pyproject.toml index 455aa09..63e2248 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "comfyui-griptape" -version = "2.1.07" +version = "2.1.08" description = "Griptape LLM(Large Language Model) Nodes for ComfyUI." authors = ["Jason Schleifer "] readme = "README.md" @@ -9,9 +9,9 @@ readme = "README.md" [project] name = "comfyui-griptape" description = "Griptape LLM(Large Language Model) Nodes for ComfyUI." -version = "2.1.07" +version = "2.1.08" license = {file = "LICENSE"} -dependencies = ["attrs^24.3.0", "openai^1.58.1", "griptape[all]==1.1.0", "python-dotenv", "poetry==1.8.5", "griptape-black-forest @ git+https://github.com/griptape-ai/griptape-black-forest.git"] +dependencies = ["attrs>=24.3.0,<25.0.0", "openai>=1.58.1,<2.0.0", "griptape[all]>=1.1.0", "python-dotenv", "poetry==1.8.5", "griptape-black-forest @ git+https://github.com/griptape-ai/griptape-black-forest.git"] [project.urls] Repository = "https://github.com/griptape-ai/ComfyUI-Griptape"