Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated tests_require from setup.py in Kedro-Airflow #55

Merged
merged 1 commit into from
Aug 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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