Skip to content

Commit

Permalink
Remove setuptools as a runtime dep
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Jul 10, 2024
1 parent 4682796 commit 5fd4fc5
Show file tree
Hide file tree
Showing 2 changed files with 11 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
7 changes: 5 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 = "[email protected]"},
]
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,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]
Expand Down

0 comments on commit 5fd4fc5

Please sign in to comment.