From 44fcd3e87eabd60c320a3955f3abc0799c0432cb Mon Sep 17 00:00:00 2001 From: Sohn Young Jin Date: Thu, 21 Sep 2023 07:37:00 +0900 Subject: [PATCH 1/2] docs: Fix wrong sample codes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd12e3b..1b952d0 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ To utilize the Face Tagger library, follow these steps: instances for each one. ```python -from utils import * +from face_tagger.utils import * image_objects = load_images_from_directory("path_to_images_directory") ``` From a2487e28ccbdd73a49ac0c0aa44feb5bfeda2d16 Mon Sep 17 00:00:00 2001 From: Sohn Young Jin Date: Thu, 21 Sep 2023 07:44:40 +0900 Subject: [PATCH 2/2] Release preparation for Face Tagger v1.0.3 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4a6bbec..d62a05e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,16 +4,16 @@ build-backend = "hatchling.build" [project] name = "face_tagger" -version = "1.0.2" +version = "1.0.3" authors = [ + { name="Sohn YoungJin", email="sonkim1001@naver.com" }, { name="Bae SungJoon", email="clcc001@naver.com" }, { name="Yoon JongBeom", email="home99032@naver.com" }, - { name="Sohn YoungJin", email="sonkim1001@naver.com" }, { name="Choi JunHwan", email="csd100j@gmail.com" } ] description = "A library for face recognition in multiple images and classification of photos containing each individual." readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",