Skip to content

Commit

Permalink
Declare a runtime dependency on setuptools (#425)
Browse files Browse the repository at this point in the history
The `setuptools` package provides the `pkg_resources` module that
`pysolr` depends upon.
  • Loading branch information
godlygeek authored Sep 13, 2023
1 parent 65e694e commit bacad23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
],
url="https://github.com/django-haystack/pysolr/",
license="BSD",
install_requires=["requests>=2.9.1"],
install_requires=["requests>=2.9.1", "setuptools"],
extras_require={"solrcloud": ["kazoo>=2.5.0"]},
setup_requires=["setuptools_scm"],
)

0 comments on commit bacad23

Please sign in to comment.