File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,10 @@ RUN apt-get -yqq update && \
18
18
libpq-dev \
19
19
pkg-config \
20
20
python3 \
21
+ python3-colorama \
21
22
python3-dev \
23
+ python3-dnspython \
24
+ python3-packaging \
22
25
python3-pip \
23
26
python3-psutil \
24
27
python3-psycopg2 \
@@ -28,7 +31,6 @@ RUN apt-get -yqq update && \
28
31
# Ubuntu's equivalent packages are too old and/or broken.
29
32
pip3 install \
30
33
--break-system-packages \
31
- colorama==0.3.1 \
32
34
docker==7.0.0 \
33
35
mysqlclient==2.2.4 \
34
36
pymongo==4.7.2
Original file line number Diff line number Diff line change 1
1
{
2
2
"framework" : " h2o" ,
3
+ "maintainers" : [" volyrique" ],
3
4
"tests" : [{
4
5
"default" : {
5
6
"json_url" : " /json" ,
Original file line number Diff line number Diff line change 10
10
from toolset .utils .output_helper import log
11
11
12
12
# Enable cross-platform colored output
13
- from colorama import init , Fore
14
- init ()
13
+ from colorama import Fore , just_fix_windows_console
14
+ just_fix_windows_console ()
15
15
16
16
17
17
class StoreSeqAction (argparse .Action ):
You can’t perform that action at this time.
0 commit comments