From d78478dfa61c798487b4f0e4c3afb0465ef03d31 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Sun, 1 Sep 2024 12:46:54 -0700 Subject: [PATCH] move pandas to test dependencies + remove geopandas (#751) remove pandas --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index affbbbbb1..90098e8b5 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,6 @@ def is_win(): "gymnasium>=0.28", "numpy>=1.21.6", "matplotlib", - "pandas", "pygame", "tqdm", "yapf", @@ -52,18 +51,20 @@ def is_win(): "panda3d==1.10.13", "panda3d-gltf==0.13", # 0.14 will bring some problems "pillow", - "pytest", "opencv-python", "lxml", "scipy", "psutil", - "geopandas", "shapely", "filelock", "Pygments", "mediapy" ] +test_requirement = [ + "pandas", + "pytest", +] cuda_requirement = [ "cuda-python==12.0.0",