Skip to content

Commit

Permalink
Merge pull request #150 from maxmind/greg/remove-setuptools-dep
Browse files Browse the repository at this point in the history
Remove setuptools as a runtime dep
  • Loading branch information
shadromani authored Jul 10, 2024
2 parents 4682796 + 97597b0 commit 0b86283
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
+++++++++++++++++++

Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -48,7 +47,10 @@ Documentation = "https://minfraud.readthedocs.org/"
"Issue Tracker" = "https://github.com/maxmind/minfraud-api-python/issues"

[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
requires = [
"setuptools>=61.0.0",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"

[tool.black]
Expand Down

0 comments on commit 0b86283

Please sign in to comment.