Skip to content

Commit

Permalink
Remove deprecated test_requires from setup.py in Kedro-Docker (#54)
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <[email protected]>
  • Loading branch information
deepyaman authored Feb 9, 2023
1 parent 61e0f08 commit 7fc511f
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions kedro-docker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from setuptools import setup

name = "kedro-docker"

here = path.abspath(path.dirname(__file__))

# get package version
Expand All @@ -17,16 +16,10 @@
with open("requirements.txt", "r", 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", "r", 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
# get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
readme = f.read()


setup(
name=name,
version=version,
Expand All @@ -37,7 +30,6 @@
license="Apache Software License (Apache 2.0)",
python_requires=">=3.7, <3.11",
install_requires=requires,
tests_require=test_requires,
author="Kedro",
packages=["kedro_docker"],
package_data={
Expand Down

0 comments on commit 7fc511f

Please sign in to comment.