From 0b224cce31015af81ae0ad9c94b70a337cf45f04 Mon Sep 17 00:00:00 2001 From: slashtechno <77907286+slashtechno@users.noreply.github.com> Date: Sun, 3 Mar 2024 18:03:25 -0600 Subject: [PATCH] Set version to 0.2 Tensorflow still can't be imported on Windows, but is shown by `pip show` --- pyproject.toml | 2 +- wyzely_detect/utils/cli_args.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4cb31da..caed365 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wyzely-detect" -version = "0.1.1" +version = "0.2" description = "Recognize faces/objects in a video stream (from a webcam or a security camera) and send notifications to your devices" authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"] repository = "https://github.com/slashtechno/wyzely-detect" diff --git a/wyzely_detect/utils/cli_args.py b/wyzely_detect/utils/cli_args.py index ff6904c..7c428bd 100644 --- a/wyzely_detect/utils/cli_args.py +++ b/wyzely_detect/utils/cli_args.py @@ -95,6 +95,7 @@ def set_argparse(): "--ntfy-url", default=os.environ["NTFY_URL"] if "NTFY_URL" in os.environ and os.environ["NTFY_URL"] != "" + # This is None but there is a default set in notify.py else None, type=str, help="The URL to send notifications to",