From b18e5a7b4455b09869c3eeada8e732e968ec7603 Mon Sep 17 00:00:00 2001 From: Bingsu Date: Thu, 4 May 2023 15:04:53 +0900 Subject: [PATCH] docs: changlog --- README.md | 10 ++++++++++ pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d66fb5..482368a 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ The yolo models can be found on huggingface [Bingsu/adetailer](https://huggingface.co/Bingsu/adetailer). +You DON'T need to download models from huggingface. + ### Dataset Datasets used for training the yolo face detection models are: @@ -41,6 +43,14 @@ On the ControlNet tab, select a ControlNet inpaint model and set the model weigh ## Changelog +### 2023-05-04 + +- v23.5.4 +- use pydantic for arguments validation +- revert: ad_model to `None` as default +- revert: `__future__` imports +- lazily import yolo and mediapipe + ### 2023-05-03 - v23.5.3.post0 diff --git a/pyproject.toml b/pyproject.toml index 834ee14..e574a62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ description = "An object detection and auto-mask extension for stable diffusion authors = [ {name = "dowon", email = "ks2515@naver.com"}, ] -requires-python = ">=3.9,<3.12" +requires-python = ">=3.8,<3.12" readme = "README.md" license = {text = "AGPL-3.0"}