From 387b37b66d4a4f44341e7ccc71eac547b5a306a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 28 Mar 2023 15:09:42 +0200 Subject: [PATCH] Remove deprecated tests_require MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Juan Luis Cano Rodríguez --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index 00857640ad..88ad5ca6bc 100644 --- a/setup.py +++ b/setup.py @@ -28,11 +28,6 @@ with open("dependency/requirements.txt", encoding="utf-8") as f: requires = [x.strip() for x in f if x.strip()] -# get test dependencies and installs -with open("test_requirements.txt", encoding="utf-8") as f: - test_requires = [x.strip() for x in f if x.strip() and not x.startswith("-r")] - - # Get the long description from the README file with open(path.join(here, "README.md"), encoding="utf-8") as f: readme = f.read() @@ -174,7 +169,6 @@ def _collect_requirements(requires): python_requires=">=3.7, <3.11", packages=find_packages(exclude=["docs*", "tests*", "tools*", "features*"]), include_package_data=True, - tests_require=test_requires, install_requires=requires, author="Kedro", entry_points={"console_scripts": ["kedro = kedro.framework.cli:main"]},