From e88610fb87e478bce1ee2d84455886d4f89a2b55 Mon Sep 17 00:00:00 2001 From: Dominic Kempf Date: Fri, 10 Jan 2025 14:31:17 +0100 Subject: [PATCH] Remove numpy v2 incompatibility warning --- python/pyhelios/live.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/python/pyhelios/live.py b/python/pyhelios/live.py index 588e7691a..9b66aad5b 100644 --- a/python/pyhelios/live.py +++ b/python/pyhelios/live.py @@ -115,12 +115,6 @@ def helios_live(): import numpy as np import time - # Check that numpy is major version 1 - np_major = int(np.__version__.split('.')[0]) - if np_major > 1: - print("WARNING: You are using Open3d together with numpy > 1. To our knowledge this is currently incompatible.") - print("Consider downgrading with 'pip install \"numpy<2\"'") - # Create instance of Scene class, generate scene, print scene (if logging v2), and visualize. scene = Scene(args.survey_file, args.loggingv2) scene.gen_from_xml()