prompt-toolkit 3.0.0 released a few days ago, which is API-incompatible with prompt-toolkit 2.0.0. This breaks new druid installs because it attempts to satisfy the constraint prompt-toolkit>=2.0.10 with v3.0.0. This patch adds a constraint to require >=2.0.10,<3.0 as a quick fix until we can update to the new version.
Fixes #64
prompt-toolkit 3.0.0 released a few days ago, which is API-incompatible with prompt-toolkit 2.0.0. This breaks new druid installs because it attempts to satisfy the constraint
prompt-toolkit>=2.0.10
with v3.0.0. This patch adds a constraint to require>=2.0.10,<3.0
as a quick fix until we can update to the new version.