Skip to content

Commit 798e622

Browse files
authored
Add Python version badge in README.md (#11)
1 parent bf5b425 commit 798e622

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Kedro-Airflow
22

33
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4-
[![Python Version](https://img.shields.io/pypi/pyversions/kedro-airflow.svg)](https://pypi.org/project/kedro-airflow/)
4+
[![Python Version](https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7-blue.svg)](https://pypi.org/project/kedro-airflow/)
55
[![PyPI Version](https://badge.fury.io/py/kedro-airflow.svg)](https://pypi.org/project/kedro-airflow/)
66
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-black.svg)](https://github.com/ambv/black)
77

@@ -20,7 +20,7 @@ pip install kedro-airflow
2020

2121
## How do I use Kedro-Airflow?
2222

23-
The Kedro-Airflow plugin adds a `kedro airflow create` CLI command that generates an Airflow DAG file in the `airflow_dags` folder of your project. At runtime, this file translates your Kedro pipeline into Airflow Python operators. This DAG object can be modified according to your needs and then you can then deploy your project to Airflow by running `kedro airflow deploy`.
23+
The Kedro-Airflow plugin adds a `kedro airflow create` CLI command that generates an Airflow DAG file in the `airflow_dags` folder of your project. At runtime, this file translates your Kedro pipeline into Airflow Python operators. This DAG object can be modified according to your needs and then you can then deploy your project to Airflow by running `kedro airflow deploy`.
2424

2525
### Prerequisites
2626

@@ -33,7 +33,7 @@ The following conditions must be true for Airflow to run your pipeline:
3333
### Process
3434

3535
1. Run `kedro airflow create` to generate a DAG file for your project.
36-
2. If needed, customize the DAG file as described [below](README.md#customization).
36+
2. If needed, customize the DAG file as described [below](https://github.com/quantumblacklabs/kedro-airflow/blob/master/README.md#customization).
3737
3. Run `kedro airflow deploy` which will copy the DAG file from the `airflow_dags` folder in your Kedro project into the `dags` folder in the Airflow home directory.
3838

3939
> *Note:* The generated DAG file will be placed in `$AIRFLOW_HOME/dags/` when `kedro airflow deploy` is run, where `AIRFLOW_HOME` is an environment variable. If the environment variable is not defined Kedro-Airflow will create `~/airflow` and `~/airflow/dags` (if required) and copy the DAG file into it.
@@ -86,4 +86,4 @@ The list of default context variables is available in the Airflow [documentation
8686

8787
## What licence do you use?
8888

89-
Kedro-Airflow is licensed under the [Apache 2.0](LICENSE.md) License.
89+
Kedro-Airflow is licensed under the [Apache 2.0](https://github.com/quantumblacklabs/kedro-airflow/blob/master/LICENSE.md) License.

0 commit comments

Comments
 (0)