Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions hexrdgui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
# rather than silently running with undefined behavior.
# workqueue is not viable (crashes on concurrent thread access).
os.environ.setdefault('NUMBA_THREADING_LAYER', 'omp')
# Suppress the "omp_set_nested routine deprecated" C-level warning
# from numba's omppool.cpp (https://github.com/numba/numba/issues/5275).
os.environ.setdefault('KMP_WARNINGS', 'false')

from PySide6.QtCore import QCoreApplication, Qt
from PySide6.QtGui import QIcon, QPixmap
Expand Down
Loading