Skip to content

Commit

Permalink
remove tests_require from setup.py because its deprecated. Signed-off…
Browse files Browse the repository at this point in the history
…-by:Charles Haley <charlie.haley+kedro@gmail.com>

comment consistency
  • Loading branch information
cshaley committed Aug 22, 2022
1 parent 5813362 commit 21a5a25
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions kedro-airflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,7 @@
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()

Expand All @@ -35,7 +30,6 @@
author="Kedro",
python_requires=">=3.7, <3.11",
install_requires=requires,
tests_require=test_requires,
license="Apache Software License (Apache 2.0)",
packages=["kedro_airflow"],
package_data={"kedro_airflow": ["kedro_airflow/airflow_dag_template.j2"]},
Expand Down

0 comments on commit 21a5a25

Please sign in to comment.