Content-Length: 1349223 | pFad | https://github.com/apache/airflow/commit/6cf76d7ac01270930de7f105fb26428763ee1d4e

32 Fix typo in pip upgrade command :( (#13148) · apache/airflow@6cf76d7 · GitHub
Skip to content

Commit 6cf76d7

Browse files
authored
Fix typo in pip upgrade command :( (#13148)
1 parent 33e0a70 commit 6cf76d7

File tree

71 files changed

+74
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+74
-74
lines changed

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ Airflow dependencies
601601
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
602602
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
603603
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
604-
``pip upgrade --pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
604+
``pip install --upgrade pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
605605
``--use-deprecated legacy-resolver`` to your pip install command.
606606

607607

@@ -745,7 +745,7 @@ Pinned constraint files
745745
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
746746
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
747747
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
748-
``pip upgrade --pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
748+
``pip install --upgrade pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
749749
``--use-deprecated legacy-resolver`` to your pip install command.
750750

751751

IMAGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ parameter to Breeze:
123123
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
124124
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
125125
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
126-
``pip upgrade --pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
126+
``pip install --upgrade pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
127127
``--use-deprecated legacy-resolver`` to your pip install command.
128128

129129

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ NOTE!!
3333
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
3434
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
3535
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
36-
``pip upgrade --pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
36+
``pip install --upgrade pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
3737
``--use-deprecated legacy-resolver`` to your pip install command.
3838

3939
# [required] building and installing by pip (preferred)

LOCAL_VIRTUALENV.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Extra Packages
6666
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
6767
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
6868
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
69-
``pip upgrade --pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
69+
``pip install --upgrade pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
7070
``--use-deprecated legacy-resolver`` to your pip install command.
7171

7272

@@ -129,7 +129,7 @@ To create and initialize the local virtualenv:
129129
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
130130
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
131131
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
132-
``pip upgrade --pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
132+
``pip install --upgrade pip==20.2.4`` or, in case you use Pip 20.3, you need to add option
133133
``--use-deprecated legacy-resolver`` to your pip install command.
134134

135135

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ NOTE!!!
127127
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
128128
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
129129
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
130-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
130+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
131131
`--use-deprecated legacy-resolver` to your pip install command.
132132

133133

UPDATING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,7 @@ NOTE!
17011701
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
17021702
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
17031703
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
1704-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
1704+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
17051705
`--use-deprecated legacy-resolver` to your pip install command.
17061706

17071707

airflow/providers/amazon/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ NOTE!
6060
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
6161
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
6262
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
63-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
63+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
6464
`--use-deprecated legacy-resolver` to your pip install command.
6565

6666
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/cassandra/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/druid/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ NOTE!
5252
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5353
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5454
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
55-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
55+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5656
`--use-deprecated legacy-resolver` to your pip install command.
5757

5858
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/hdfs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/hive/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ NOTE!
5454
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5555
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5656
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
57-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
57+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5858
`--use-deprecated legacy-resolver` to your pip install command.
5959

6060
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/kylin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/livy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ NOTE!
5151
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5252
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5353
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
54-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
54+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5555
`--use-deprecated legacy-resolver` to your pip install command.
5656

5757
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/pig/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ NOTE!
4848
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4949
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5050
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
51-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
51+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5252
`--use-deprecated legacy-resolver` to your pip install command.
5353

5454
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/pinot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NOTE!
4747
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4848
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
4949
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
50-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
50+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5151
`--use-deprecated legacy-resolver` to your pip install command.
5252

5353
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/spark/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/apache/sqoop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ NOTE!
4848
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4949
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5050
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
51-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
51+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5252
`--use-deprecated legacy-resolver` to your pip install command.
5353

5454
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/celery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NOTE!
4747
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4848
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
4949
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
50-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
50+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5151
`--use-deprecated legacy-resolver` to your pip install command.
5252

5353
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/cloudant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NOTE!
4747
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4848
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
4949
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
50-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
50+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5151
`--use-deprecated legacy-resolver` to your pip install command.
5252

5353
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/cncf/kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ NOTE!
5858
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5959
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
6060
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
61-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
61+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
6262
`--use-deprecated legacy-resolver` to your pip install command.
6363

6464
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/databricks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/datadog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/dingding/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/discord/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/elasticsearch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NOTE!
4747
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4848
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
4949
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
50-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
50+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5151
`--use-deprecated legacy-resolver` to your pip install command.
5252

5353
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/exasol/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE!
4949
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
5050
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5151
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
52-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
52+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5353
`--use-deprecated legacy-resolver` to your pip install command.
5454

5555
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/facebook/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NOTE!
4747
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4848
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
4949
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
50-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
50+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5151
`--use-deprecated legacy-resolver` to your pip install command.
5252

5353
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/ftp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ NOTE!
4848
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
4949
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
5050
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
51-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
51+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
5252
`--use-deprecated legacy-resolver` to your pip install command.
5353

5454
You can install this package on top of an existing airflow 2.* installation via

airflow/providers/google/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ NOTE!
6060
On November 2020, new version of PIP (20.3) has been released with a new, 2020 resolver. This resolver
6161
does not yet work with Apache Airflow and might leads to errors in installation - depends on your choice
6262
of extras. In order to install Airflow you need to either downgrade pip to version 20.2.4
63-
`pip upgrade --pip==20.2.4` or, in case you use Pip 20.3, you need to add option
63+
`pip install --upgrade pip==20.2.4` or, in case you use Pip 20.3, you need to add option
6464
`--use-deprecated legacy-resolver` to your pip install command.
6565

6666
You can install this package on top of an existing airflow 2.* installation via

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/apache/airflow/commit/6cf76d7ac01270930de7f105fb26428763ee1d4e

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy