Merge pull request #924 from StanfordVL/fix-docker-build

Remove dependency on numba
This commit is contained in:
Cem Gökmen 2024-10-01 15:38:12 -07:00 committed by GitHub
commit 7518d900dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -98,13 +98,17 @@ def _launch_app():
import sys
import warnings
from numba.core.errors import NumbaPerformanceWarning
try:
from numba.core.errors import NumbaPerformanceWarning
warnings.simplefilter("ignore", category=NumbaPerformanceWarning)
except ImportError:
pass
# TODO: Find a more elegant way to prune omni logging
# sys.argv.append("--/log/level=warning")
# sys.argv.append("--/log/fileLogLevel=warning")
# sys.argv.append("--/log/outputStreamLevel=error")
warnings.simplefilter("ignore", category=NumbaPerformanceWarning)
# Try to import the isaacsim module that only shows up in Isaac Sim 4.0.0. This ensures that
# if we are using the pip installed version, all the ISAAC_PATH etc. env vars are set correctly.

View File

@ -46,7 +46,6 @@ setup(
"aenum~=3.1.15",
"rtree~=1.2.0",
"graphviz~=0.20",
"numba>=0.60.0",
"matplotlib>=3.0.0",
],
extras_require={},