Merge pull request #663 from adieyal/bug/explicitly-convert-wildcards-to-string
Upgraded to dynamicprompts 0.30.1pull/667/head
commit
b1ea7bd324
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "2.16.3"
|
||||
__version__ = "2.17.0"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue