From a5b7c0220b0b87c2326d1e6380fc59db464891bb Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sat, 14 Sep 2024 17:31:23 -0600 Subject: [PATCH] allow earlier python versions --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0ac5b29..12cc406 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "goat_monitor" authors = [{ name = "Brendan Haines", email = "brendan.haines@gmail.com" }] description = "Remote monitoring of anything" readme = "README.md" -requires-python = ">=3.11" # might work with earlier versions, I haven't tried +requires-python = ">=3" # keywords = ["one", "two"] license = { text = "MIT License" } classifiers = ["Programming Language :: Python :: 3"]