Skip to content

Commit

Permalink
Remove deprecated tests_require
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Luis Cano Rodríguez <juan_luis_cano@mckinsey.com>
  • Loading branch information
astrojuanlu committed Apr 3, 2023
1 parent 0497d45 commit 387b37b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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"]},
Expand Down

0 comments on commit 387b37b

Please sign in to comment.