From 8adfb8e9714d112feacc4ac54fe5ff22f8d700f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Schr=C3=B6der?= <fschroeder@techfak.uni-bielefeld.de> Date: Thu, 29 Feb 2024 10:36:44 +0100 Subject: [PATCH] Remove test_requirements from setup.py The setup file has been updated to remove the 'tests_require' attribute. Instead, 'test_requirements' has been added under 'extras_require'. This change allows the flexible installation of test requirements. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a79ce196..db8f170a 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,6 @@ setup( name="cooperative_cuisine", packages=find_packages(include=["cooperative_cuisine", "cooperative_cuisine.*"]), test_suite="tests", - tests_require=test_requirements, url="https://gitlab.ub.uni-bielefeld.de/scs/cocosy/overcooked-simulator", version="0.1.0", zip_safe=False, @@ -66,6 +65,7 @@ setup( "stable-baselines3[extra]>=2.2.1", "opencv-python>=4.9", "wandb>=0.16.3", - ] + ], + "test": test_requirements, }, ) -- GitLab