You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i import skbuild with python3 on my system I get the following printouts:
>>> import skbuild
Generating grammar tables from /usr/lib/python3.8/lib2to3/Grammar.txt
Generating grammar tables from /usr/lib/python3.8/lib2to3/PatternGrammar.txt
This causes issues in python/CMakeLists.txt since line 90 is not expecting this extra printout.
Locally, I have fixed this by replacing the import skbuild at line 81 of the script with import sys; temp = sys.stdout; sys.stdout = open(os.devnull,\"w\"); import skbuild; sys.stdout = temp to silence the output.
The text was updated successfully, but these errors were encountered:
When i import skbuild with python3 on my system I get the following printouts:
This causes issues in python/CMakeLists.txt since line 90 is not expecting this extra printout.
Locally, I have fixed this by replacing the
import skbuild
at line 81 of the script withimport sys; temp = sys.stdout; sys.stdout = open(os.devnull,\"w\"); import skbuild; sys.stdout = temp
to silence the output.The text was updated successfully, but these errors were encountered: