-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Automatic1111 Stable Diffusion Webui to v1.6.0. #585
Conversation
The requirements_versions.txt file has been updated several times in the Automatic1111 Stable Diffusion Webui. It's better to synchronize the pip installation between the download and runtime Docker targets.
duplicate / relates to #584 |
ad7a5b9
to
948e04c
Compare
…bui uses. Remove taming-transformers because it's no longer used. Change how clip_interrogator files are copied because that repo changed its directory structure in the meantime.
The two commits / checkouts were there very intentionally, especially in the early days, where the UI would get updated hourly, re-building the entire thing would take eternity, especially because of pytorch. I am planning to replace the python container we use now a pytorch one, this make installations faster, but waiting until pytorch cuda 11.8 which is not yet out. Thank you for this PR, I will revert the sha and merge. Maybe in the future we can get rid of the double checkout. |
commit 3e67f55 Author: AbdBarho <[email protected]> Date: Mon Nov 13 21:12:07 2023 +0100 Update Auto (AbdBarho#610) Closes AbdBarho#609 AUTOMATIC1111/stable-diffusion-webui@4afaaf8 commit a2561f2 Author: cococig <[email protected]> Date: Tue Nov 14 03:35:24 2023 +0900 Update automatic1111 webui base image (AbdBarho#601) Update the minor version of Python in the base image for AUTOMATIC1111 web UI. Closes issue AbdBarho#600 commit 6a34739 Author: cloudaxes <[email protected]> Date: Sat Sep 9 23:10:05 2023 +0900 Update Automatic1111 to v1.6.0 (AbdBarho#585) Update Automatic1111 Stable Diffusion Webui to v1.6.0. Closes AbdBarho#583 --------- Co-authored-by: AbdBarho <[email protected]> commit 630980b Author: Sebastian Piechowiak <[email protected]> Date: Sat Sep 9 15:34:06 2023 +0200 Skipping installation of requirements for disabled extensions (AbdBarho#582) Closes AbdBarho#563 commit 8474059 Author: 66li <[email protected]> Date: Fri Sep 1 02:04:32 2023 +0800 Update generative-models version (AbdBarho#581) Upgrade a dependent library https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/v1.5.2/modules/launch_utils.py#L288C90-L288C130 --------- Co-authored-by: AbdBarho <[email protected]> commit 59b9762 Author: AbdBarho <[email protected]> Date: Wed Aug 30 20:00:48 2023 +0200 Update Comfy (AbdBarho#580) comfyanonymous/ComfyUI@7e941f9 commit 70357bf Author: AbdBarho <[email protected]> Date: Wed Aug 30 19:55:06 2023 +0200 Auto 1.5.2 (AbdBarho#579) AUTOMATIC1111/stable-diffusion-webui@c9c8485
Update Automatic1111 Stable Diffusion Webui to v1.6.0.
Also only checks out one Webui commit. The requirements_versions.txt file is changing over time. It's easier conceptually to only install one set of pip requirements. There was a note there to not change the SHA that the download target checks out to save build time, but that's only on the first run.
Closes issue #583.