You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by jh...@apache.org on 2021/08/13 18:20:22 UTC

[airflow] 02/38: Path correction in docs for airflow core (#17567)

This is an automated email from the ASF dual-hosted git repository.

jhtimmins pushed a commit to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit be09eef3f437e3793a6370783aa9ccea797c225b
Author: Amit Talreja <ss...@gmail.com>
AuthorDate: Thu Aug 12 19:20:41 2021 +0530

    Path correction in docs for airflow core (#17567)
    
    Airflow core constraint path was wrong.
    
    (cherry picked from commit 951006e1ca36db02c05b05a749edd0b88b607f6e)
---
 docs/apache-airflow/installation.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/installation.rst b/docs/apache-airflow/installation.rst
index 8d1624c..574d7ec 100644
--- a/docs/apache-airflow/installation.rst
+++ b/docs/apache-airflow/installation.rst
@@ -259,7 +259,7 @@ If you don't want to install any extra providers, initially you can use the comm
     PYTHON_VERSION="$(python --version | cut -d " " -f 2 | cut -d "." -f 1-2)"
     # For example: 3.6
     CONSTRAINT_URL="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-no-providers-${PYTHON_VERSION}.txt"
-    # For example: https://raw.githubusercontent.com/apache/airflow/constraints-no-providers-|version|/constraints-3.6.txt
+    # For example: https://raw.githubusercontent.com/apache/airflow/constraints-|version|/constraints-no-providers-3.6.txt
     pip install "apache-airflow==${AIRFLOW_VERSION}" --constraint "${CONSTRAINT_URL}"