Upgraded to dynamicprompts 0.30.1

pull/663/head v2.17.0
Adi Eyal 2023-11-09 01:12:24 +02:00
parent e07ff1d72a
commit 38ffce98ce
4 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,4 @@
- 2.17.0 Upgraded to dynamicprompts v0.30.1. Removed support for python 3.7 ([#98](https://github.com/adieyal/dynamicprompts/pull/98)), wildcard files now support weights ([#97](https://github.com/adieyal/dynamicprompts/pull/97)). Also added infrastructure to return additional metadata gatherered during sampling ([#100](https://github.com/adieyal/dynamicprompts/pull/100)).
- 2.16.3 Refactoring and fixing [#601](https://github.com/adieyal/sd-dynamicprompts/issues/601)
- 2.16.2 Refactor paths and magic prompt models file read
- 2.16.1 Only using cross product when num_prompts is not provided

View File

@ -1,7 +1,7 @@
[project]
dependencies = [
"send2trash~=1.8",
"dynamicprompts[attentiongrabber,magicprompt]~=0.29.0",
"dynamicprompts[attentiongrabber,magicprompt]~=0.30.1",
]
[tool.pytest.ini_options]

View File

@ -1 +1 @@
__version__ = "2.16.3"
__version__ = "2.17.0"

View File

@ -264,7 +264,7 @@ def handle_load_wildcard(event: dict) -> str:
else:
# Otherwise, return a preview of the values,
# with a header to indicate that the file can't be edited.
values = "\n".join(wf.get_values())
values = "\n".join(str(val) for val in wf.get_values())
contents = f"# File can't be edited\n{values}"
can_edit = False