monome / druid

terminal interface for crow
GNU General Public License v3.0
35 stars 16 forks source link

constrain prompt-toolkit to < 3.0 #65

Closed csboling closed 5 years ago

csboling commented 5 years ago

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.