Skip to content

Commit

Permalink
Remove click from install requirements
Browse files Browse the repository at this point in the history
Click is only needed for integration tests and not for actual usage.
Add click to tests extra instead.
  • Loading branch information
Lordshinjo authored and ebyhr committed Aug 5, 2021
1 parent 63fc498 commit a2331a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

all_require = [kerberos_require]

tests_require = all_require + ["httpretty", "pytest", "pytest-runner", "pytz", "flake8"]
tests_require = all_require + ["httpretty", "pytest", "pytest-runner", "pytz", "flake8", "click"]

setup(
name="trino",
Expand Down Expand Up @@ -68,7 +68,7 @@
"Topic :: Database :: Front-Ends",
],
python_requires='>=3.6',
install_requires=["click", "requests"],
install_requires=["requests"],
extras_require={
"all": all_require,
"kerberos": kerberos_require,
Expand Down

0 comments on commit a2331a5

Please sign in to comment.