From 81018df36d8e90815fb9a3a3b6d9e9f3f6da5fcf Mon Sep 17 00:00:00 2001 From: Michael Herold Date: Mon, 17 Oct 2022 23:06:40 -0500 Subject: [PATCH] Constrain to Pythons >= 3.7 This wasn't set when initially importing the configuration with Hatch so it was building a universal wheel, which is incorrect. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 34b3e62..23d6864 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ classifiers = [ dependencies = [ "dnspython >= 2.0.0", ] +requires-python = ">=3.7" [project.urls] Homepage = "https://github.com/michaelherold/pyIsEmail"