Skip to content

Commit

Permalink
setup.py: Add 'cachelib' dependency (#352)
Browse files Browse the repository at this point in the history
Since #308 added a hard requirement for `cachelib`, add it
to user-facing `setup.py` as well (it was previously
only added to dev-dependencies).
  • Loading branch information
ix5 authored May 28, 2022
1 parent a04b8f3 commit cd5aa95
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 @@ -3,7 +3,7 @@
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
setup(
name="Flask-Caching",
install_requires=["Flask"],
install_requires=["cachelib", "Flask"],
tests_require=[
"pytest",
"pytest-xprocess",
Expand Down

0 comments on commit cd5aa95

Please sign in to comment.