Эх сурвалжийг харах

toolset: Update colorama to version 0.4.6 (#9082)

Anton Kirilov 1 жил өмнө
parent
commit
97f8550529

+ 3 - 1
Dockerfile

@@ -18,7 +18,10 @@ RUN apt-get -yqq update && \
       libpq-dev \
       pkg-config \
       python3 \
+      python3-colorama \
       python3-dev \
+      python3-dnspython \
+      python3-packaging \
       python3-pip \
       python3-psutil \
       python3-psycopg2 \
@@ -28,7 +31,6 @@ RUN apt-get -yqq update && \
     # Ubuntu's equivalent packages are too old and/or broken.
     pip3 install \
       --break-system-packages \
-      colorama==0.3.1 \
       docker==7.0.0 \
       mysqlclient==2.2.4 \
       pymongo==4.7.2

+ 1 - 0
frameworks/C/h2o/benchmark_config.json

@@ -1,5 +1,6 @@
 {
   "framework": "h2o",
+  "maintainers": ["volyrique"],
   "tests": [{
     "default": {
       "json_url": "/json",

+ 2 - 2
toolset/run-tests.py

@@ -10,8 +10,8 @@ from toolset.utils.benchmark_config import BenchmarkConfig
 from toolset.utils.output_helper import log
 
 # Enable cross-platform colored output
-from colorama import init, Fore
-init()
+from colorama import Fore, just_fix_windows_console
+just_fix_windows_console()
 
 
 class StoreSeqAction(argparse.Action):