Fix test + missing dependency to prompt-toolkit in setup.py

This commit is contained in:
Alexandre Aubin 2021-09-23 00:47:11 +02:00
parent 1f7bb1d54c
commit c4b559cf6b
2 changed files with 1 additions and 2 deletions

View file

@ -2,12 +2,10 @@
import os import os
import sys import sys
import getpass
import locale import locale
import logging import logging
import argparse import argparse
import tempfile import tempfile
from readline import insert_text, set_startup_hook
from collections import OrderedDict from collections import OrderedDict
from datetime import date, datetime from datetime import date, datetime
from subprocess import call from subprocess import call

View file

@ -33,6 +33,7 @@ install_deps = [
"toml", "toml",
"gevent-websocket", "gevent-websocket",
"bottle", "bottle",
"prompt-toolkit",
] ]
test_deps = [ test_deps = [