prep 0.0.1 release

This commit is contained in:
Lincoln Stein
2024-06-23 22:29:23 -04:00
parent 75dcff92f9
commit 2999b039a3
5 changed files with 21 additions and 3 deletions

View File

@@ -1,3 +1,12 @@
# InvokeAI-MGPU - Experimental version of Invoke supporting rendering on multiple GPUs
This is a fork of the wonderful [InvokeAI Text-to-Image
Generator](https://github.com/invoke-ai/InvokeAI) that has been
modified to allow simultaneous rendering of images on systems with
multiple CUDA GPUs. This support is very experimental and should not be
used in production. Please click on the **Releases** button link on the
right sidebar for the installer.
<div align="center">
![project hero](https://github.com/invoke-ai/InvokeAI/assets/31807370/6e3728c7-e90e-4711-905c-3b55844ff5be)

View File

@@ -96,6 +96,8 @@ for f in templates *.txt *.reg; do
done
mkdir InvokeAI-Installer/lib
cp lib/*.py InvokeAI-Installer/lib
mkdir InvokeAI-Installer/dist
cp dist/*.whl InvokeAI-Installer/dist
# Install scripts
# Mac/Linux

View File

@@ -137,7 +137,6 @@ class Installer:
import messages
if wheel:
messages.installing_from_wheel(wheel.name)
version = get_version_from_wheel_filename(wheel.name)
else:
messages.welcome(self.available_releases)

View File

@@ -8,7 +8,15 @@ from pathlib import Path
from installer import Installer
def find_wheel() -> Path:
dist = Path('./dist')
wheel = next(dist.glob('*.whl'))
assert wheel is not None
return wheel
if __name__ == "__main__":
wheel = find_wheel()
parser = argparse.ArgumentParser()
parser.add_argument(
@@ -42,7 +50,7 @@ if __name__ == "__main__":
dest="wheel",
help="Specifies a wheel for the InvokeAI package. Used for troubleshooting or testing prereleases.",
type=Path,
default=None,
default=wheel
)
args = parser.parse_args()

View File

@@ -1 +1 @@
__version__ = "4.2.4-mgpu"
__version__ = "0.0.1"