Skip to content

Commit a044403

Browse files
authored
Bugfix/fix 2.3.2 upgrade path (#2943)
This fixes #2930 by adding a missing line in `pyproject.toml` needed to create the `config/stable-diffusion` directory.
2 parents 8d80802 + 16dea46 commit a044403

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ldm/invoke/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__version__='2.3.2'
2+
__version__='2.3.2.post1'

ldm/invoke/config/invokeai_update.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def main():
7272
tag = Prompt.ask('Enter an InvokeAI tag or branch name')
7373

7474
print(f':crossed_fingers: Upgrading to [yellow]{tag}[/yellow]')
75-
cmd = f'pip install {INVOKE_AI_SRC}/{tag}.zip --use-pep517'
75+
cmd = f'pip install {INVOKE_AI_SRC}/{tag}.zip --use-pep517 --upgrade'
7676
print('')
7777
print('')
7878
if os.system(cmd)==0:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ version = {attr = "ldm.invoke.__version__"}
147147

148148
[tool.setuptools.package-data]
149149
"invokeai.assets.web" = ["**.png"]
150-
"invokeai.configs" = ["**.example", "**.txt", "**.yaml"]
150+
"invokeai.configs" = ["**.example", "**.txt", "**.yaml", "**/*.yaml"]
151151
"invokeai.frontend.dist" = ["**"]
152152

153153
[tool.black]

0 commit comments

Comments
 (0)