From b69f7533e870304fa50cc4ff8754a76f53888714 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Mon, 25 Jul 2022 10:49:56 +0200 Subject: [PATCH] Add httpx to install_requires I believe this was missed in: https://github.com/python-pinot-dbapi/pinot-dbapi/pull/28 and a test import without this package fails. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6d84fa0..4e82073 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ # What packages are required for this module to be executed? REQUIRED = [ + 'httpx', 'requests', 'six', ]