diff --git a/HISTORY.rst b/HISTORY.rst index 12ecea1..5108d27 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +2.11.1 ++++++++++++++++++++ + +* ``setuptools`` was incorrectly listed as a runtime dependency. This has + been removed. + 2.11.0 (2024-07-08) +++++++++++++++++++ diff --git a/pyproject.toml b/pyproject.toml index 5ad3a95..780202b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,6 @@ authors = [ {name = "Gregory Oschwald", email = "goschwald@maxmind.com"}, ] dependencies = [ - "setuptools>=60.0.0", "aiohttp>=3.6.2,<4.0.0", "email_validator>=2.0.0,<3.0.0", "geoip2>=4.8.0,<5.0.0", @@ -48,7 +47,11 @@ Documentation = "https://minfraud.readthedocs.org/" "Issue Tracker" = "https://github.com/maxmind/minfraud-api-python/issues" [build-system] -requires = ["setuptools", "setuptools-scm", "wheel"] +requires = [ + "setuptools>=60.0.0", + "setuptools-scm", + "wheel", +] build-backend = "setuptools.build_meta" [tool.black]