File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11[build-system ]
22requires = [
33 " setuptools>=42" ,
4- " wheel"
4+ " wheel" ,
55]
66build-backend = " setuptools.build_meta"
7+
8+ [tool .pytest .ini_options ]
9+ log_cli = true
10+ log_level = " INFO"
Original file line number Diff line number Diff line change 99import string
1010import subprocess
1111import os
12+ import logging
1213import shutil
1314import socket
14- import sys
1515import threading
1616from typing import Optional
1717from dotenv import load_dotenv
@@ -102,7 +102,7 @@ def _build_geo_engine(self) -> None:
102102 if cargo_bin is None :
103103 raise RuntimeError ('Cargo not found' )
104104
105- print ("Building Geo Engine binaries… this may take a while." , file = sys . stderr )
105+ logging . info ("Building Geo Engine binaries… this may take a while." )
106106
107107 subprocess .run (
108108 [
You can’t perform that action at this time.
0 commit comments