Skip to content

Commit

Permalink
Add flag to disable taichi header print.
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoming0625 authored Nov 20, 2023
1 parent c8ef774 commit 65548e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/taichi/_lib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ def _print_taichi_header():
print(header)


_print_taichi_header()
if os.environ.get('ENABLE_TAICHI_HEADER_PRINT', True):
_print_taichi_header()


def try_get_wheel_tag(module):
Expand Down

0 comments on commit 65548e0

Please sign in to comment.