summaryrefslogtreecommitdiff
path: root/python-apache-airflow.spec
blob: 86de12a3f8f2bab8465405ad8ae3d6768b51042d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
%global _empty_manifest_terminate_build 0
Name:		python-apache-airflow
Version:	2.5.3
Release:	1
Summary:	Programmatically author, schedule and monitor data pipelines
License:	Apache License 2.0
URL:		https://airflow.apache.org/
Source0:	https://mirrors.nju.edu.cn/pypi/web/packages/56/96/742af5b44ff769d83019b73e1dce010c28f4deef542e72e09869a9dc17ab/apache-airflow-2.5.3.tar.gz
BuildArch:	noarch

Requires:	python3-alembic
Requires:	python3-argcomplete
Requires:	python3-attrs
Requires:	python3-blinker
Requires:	python3-cattrs
Requires:	python3-colorlog
Requires:	python3-configupdater
Requires:	python3-connexion[flask]
Requires:	python3-cron-descriptor
Requires:	python3-croniter
Requires:	python3-cryptography
Requires:	python3-deprecated
Requires:	python3-dill
Requires:	python3-flask
Requires:	python3-flask-appbuilder
Requires:	python3-flask-caching
Requires:	python3-flask-login
Requires:	python3-flask-session
Requires:	python3-flask-wtf
Requires:	python3-graphviz
Requires:	python3-gunicorn
Requires:	python3-httpx
Requires:	python3-itsdangerous
Requires:	python3-jinja2
Requires:	python3-jsonschema
Requires:	python3-lazy-object-proxy
Requires:	python3-linkify-it-py
Requires:	python3-lockfile
Requires:	python3-markdown
Requires:	python3-markdown-it-py
Requires:	python3-markupsafe
Requires:	python3-marshmallow-oneofschema
Requires:	python3-mdit-py-plugins
Requires:	python3-packaging
Requires:	python3-pathspec
Requires:	python3-pendulum
Requires:	python3-pluggy
Requires:	python3-psutil
Requires:	python3-pygments
Requires:	python3-pyjwt
Requires:	python3-daemon
Requires:	python3-dateutil
Requires:	python3-nvd3
Requires:	python3-slugify
Requires:	python3-rfc3339-validator
Requires:	python3-rich
Requires:	python3-setproctitle
Requires:	python3-sqlalchemy
Requires:	python3-sqlalchemy-jsonfield
Requires:	python3-tabulate
Requires:	python3-tenacity
Requires:	python3-termcolor
Requires:	python3-typing-extensions
Requires:	python3-unicodecsv
Requires:	python3-werkzeug
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow-providers-ftp
Requires:	python3-apache-airflow-providers-http
Requires:	python3-apache-airflow-providers-imap
Requires:	python3-apache-airflow-providers-sqlite
Requires:	python3-importlib-metadata
Requires:	python3-importlib-resources
Requires:	python3-cached-property
Requires:	python3-apache-airflow-providers-airbyte
Requires:	python3-apache-airflow-providers-alibaba
Requires:	python3-JIRA
Requires:	python3-PyOpenSSL
Requires:	python3-adal
Requires:	python3-aiohttp
Requires:	python3-amqp
Requires:	python3-analytics-python
Requires:	python3-apache-airflow
Requires:	python3-apache-airflow
Requires:	python3-apache-beam
Requires:	python3-arrow
Requires:	python3-asana
Requires:	python3-asgiref
Requires:	python3-atlasclient
Requires:	python3-authlib
Requires:	python3-azure-batch
Requires:	python3-azure-cosmos
Requires:	python3-azure-datalake-store
Requires:	python3-azure-identity
Requires:	python3-azure-keyvault-secrets
Requires:	python3-azure-kusto-data
Requires:	python3-azure-mgmt-containerinstance
Requires:	python3-azure-mgmt-datafactory
Requires:	python3-azure-mgmt-datalake-store
Requires:	python3-azure-mgmt-resource
Requires:	python3-azure-storage-blob
Requires:	python3-azure-storage-common
Requires:	python3-azure-storage-file
Requires:	python3-azure-synapse-spark
Requires:	python3-bcrypt
Requires:	python3-blinker
Requires:	python3-boto3
Requires:	python3-cassandra-driver
Requires:	python3-celery
Requires:	python3-cgroupspy
Requires:	python3-cloudant
Requires:	python3-cloudpickle
Requires:	python3-cryptography
Requires:	python3-dask
Requires:	python3-databricks-sql-connector
Requires:	python3-datadog
Requires:	python3-distributed
Requires:	python3-dnspython
Requires:	python3-docker
Requires:	python3-elasticsearch-dbapi
Requires:	python3-elasticsearch-dsl
Requires:	python3-elasticsearch
Requires:	python3-eventlet
Requires:	python3-facebook-business
Requires:	python3-flask-appbuilder[oauth]
Requires:	python3-flask-bcrypt
Requires:	python3-flower
Requires:	python3-gcloud-aio-bigquery
Requires:	python3-gcloud-aio-storage
Requires:	python3-gcloud-aio-auth
Requires:	python3-gevent
Requires:	python3-google-ads
Requires:	python3-google-api-core
Requires:	python3-google-api-python-client
Requires:	python3-google-auth-httplib2
Requires:	python3-google-auth
Requires:	python3-google-auth
Requires:	python3-google-cloud-aiplatform
Requires:	python3-google-cloud-automl
Requires:	python3-google-cloud-bigquery-datatransfer
Requires:	python3-google-cloud-bigtable
Requires:	python3-google-cloud-build
Requires:	python3-google-cloud-compute
Requires:	python3-google-cloud-container
Requires:	python3-google-cloud-datacatalog
Requires:	python3-google-cloud-dataform
Requires:	python3-google-cloud-dataplex
Requires:	python3-google-cloud-dataproc-metastore
Requires:	python3-google-cloud-dataproc
Requires:	python3-google-cloud-dlp
Requires:	python3-google-cloud-kms
Requires:	python3-google-cloud-language
Requires:	python3-google-cloud-logging
Requires:	python3-google-cloud-memcache
Requires:	python3-google-cloud-monitoring
Requires:	python3-google-cloud-orchestration-airflow
Requires:	python3-google-cloud-os-login
Requires:	python3-google-cloud-pubsub
Requires:	python3-google-cloud-redis
Requires:	python3-google-cloud-secret-manager
Requires:	python3-google-cloud-spanner
Requires:	python3-google-cloud-speech
Requires:	python3-google-cloud-storage
Requires:	python3-google-cloud-tasks
Requires:	python3-google-cloud-texttospeech
Requires:	python3-google-cloud-translate
Requires:	python3-google-cloud-videointelligence
Requires:	python3-google-cloud-vision
Requires:	python3-google-cloud-workflows
Requires:	python3-greenlet
Requires:	python3-grpcio-gcp
Requires:	python3-grpcio
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-hmsclient
Requires:	python3-httpx
Requires:	python3-hvac
Requires:	python3-influxdb-client
Requires:	python3-jaydebeapi
Requires:	python3-json-merge-patch
Requires:	python3-jsonpath-ng
Requires:	python3-kubernetes
Requires:	python3-kylinpy
Requires:	python3-ldap3
Requires:	python3-looker-sdk
Requires:	python3-mypy-boto3-appflow
Requires:	python3-mypy-boto3-rds
Requires:	python3-mypy-boto3-redshift-data
Requires:	python3-neo4j
Requires:	python3-opsgenie-sdk
Requires:	python3-oracledb
Requires:	python3-oss2
Requires:	python3-pandas-gbq
Requires:	python3-pandas
Requires:	python3-papermill[all]
Requires:	python3-paramiko
Requires:	python3-pdpyras
Requires:	python3-pinotdb
Requires:	python3-plyvel
Requires:	python3-presto-python-client
Requires:	python3-proto-plus
Requires:	python3-protobuf
Requires:	python3-psycopg2
Requires:	python3-pydruid
Requires:	python3-pyexasol
Requires:	python3-pygithub
Requires:	python3-pyhive[hive]
Requires:	python3-pykerberos
Requires:	python3-pymongo
Requires:	python3-pymssql
Requires:	python3-pyodbc
Requires:	python3-pypsrp
Requires:	python3-pyspark
Requires:	python3-arango
Requires:	python3-dotenv
Requires:	python3-jenkins
Requires:	python3-ldap
Requires:	python3-telegram-bot
Requires:	python3-pywinrm
Requires:	python3-qds-sdk
Requires:	python3-redis
Requires:	python3-redshift-connector
Requires:	python3-requests
Requires:	python3-requests
Requires:	python3-requests-kerberos
Requires:	python3-requests-toolbelt
Requires:	python3-scrapbook[all]
Requires:	python3-sendgrid
Requires:	python3-sentry-sdk
Requires:	python3-simple-salesforce
Requires:	python3-slack-sdk
Requires:	python3-smbprotocol
Requires:	python3-snakebite-py3
Requires:	python3-snowflake-connector-python
Requires:	python3-snowflake-sqlalchemy
Requires:	python3-spython
Requires:	python3-sqlalchemy-bigquery
Requires:	python3-sqlalchemy-drill
Requires:	python3-sqlalchemy-redshift
Requires:	python3-sqlparse
Requires:	python3-sshtunnel
Requires:	python3-statsd
Requires:	python3-tableauserverclient
Requires:	python3-thrift
Requires:	python3-thrift-sasl
Requires:	python3-trino
Requires:	python3-vertica-python
Requires:	python3-virtualenv
Requires:	python3-watchtower
Requires:	python3-yandexcloud
Requires:	python3-zenpy
Requires:	python3-apache-airflow-providers-airbyte
Requires:	python3-apache-airflow-providers-alibaba
Requires:	python3-apache-airflow-providers-amazon
Requires:	python3-apache-airflow-providers-apache-beam
Requires:	python3-apache-airflow-providers-apache-cassandra
Requires:	python3-apache-airflow-providers-apache-drill
Requires:	python3-apache-airflow-providers-apache-druid
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-apache-kylin
Requires:	python3-apache-airflow-providers-apache-livy
Requires:	python3-apache-airflow-providers-apache-pig
Requires:	python3-apache-airflow-providers-apache-pinot
Requires:	python3-apache-airflow-providers-apache-spark
Requires:	python3-apache-airflow-providers-apache-sqoop
Requires:	python3-apache-airflow-providers-arangodb
Requires:	python3-apache-airflow-providers-asana
Requires:	python3-apache-airflow-providers-atlassian-jira
Requires:	python3-apache-airflow-providers-celery
Requires:	python3-apache-airflow-providers-cloudant
Requires:	python3-apache-airflow-providers-cncf-kubernetes
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow-providers-databricks
Requires:	python3-apache-airflow-providers-datadog
Requires:	python3-apache-airflow-providers-dbt-cloud
Requires:	python3-apache-airflow-providers-dingding
Requires:	python3-apache-airflow-providers-discord
Requires:	python3-apache-airflow-providers-docker
Requires:	python3-apache-airflow-providers-elasticsearch
Requires:	python3-apache-airflow-providers-exasol
Requires:	python3-apache-airflow-providers-facebook
Requires:	python3-apache-airflow-providers-ftp
Requires:	python3-apache-airflow-providers-github
Requires:	python3-apache-airflow-providers-google
Requires:	python3-apache-airflow-providers-grpc
Requires:	python3-apache-airflow-providers-hashicorp
Requires:	python3-apache-airflow-providers-http
Requires:	python3-apache-airflow-providers-imap
Requires:	python3-apache-airflow-providers-influxdb
Requires:	python3-apache-airflow-providers-jdbc
Requires:	python3-apache-airflow-providers-jenkins
Requires:	python3-apache-airflow-providers-microsoft-azure
Requires:	python3-apache-airflow-providers-microsoft-mssql
Requires:	python3-apache-airflow-providers-microsoft-psrp
Requires:	python3-apache-airflow-providers-microsoft-winrm
Requires:	python3-apache-airflow-providers-mongo
Requires:	python3-apache-airflow-providers-mysql
Requires:	python3-apache-airflow-providers-neo4j
Requires:	python3-apache-airflow-providers-odbc
Requires:	python3-apache-airflow-providers-openfaas
Requires:	python3-apache-airflow-providers-opsgenie
Requires:	python3-apache-airflow-providers-oracle
Requires:	python3-apache-airflow-providers-pagerduty
Requires:	python3-apache-airflow-providers-papermill
Requires:	python3-apache-airflow-providers-plexus
Requires:	python3-apache-airflow-providers-postgres
Requires:	python3-apache-airflow-providers-presto
Requires:	python3-apache-airflow-providers-qubole
Requires:	python3-apache-airflow-providers-redis
Requires:	python3-apache-airflow-providers-salesforce
Requires:	python3-apache-airflow-providers-samba
Requires:	python3-apache-airflow-providers-segment
Requires:	python3-apache-airflow-providers-sendgrid
Requires:	python3-apache-airflow-providers-sftp
Requires:	python3-apache-airflow-providers-singularity
Requires:	python3-apache-airflow-providers-slack
Requires:	python3-apache-airflow-providers-snowflake
Requires:	python3-apache-airflow-providers-sqlite
Requires:	python3-apache-airflow-providers-ssh
Requires:	python3-apache-airflow-providers-tableau
Requires:	python3-apache-airflow-providers-tabular
Requires:	python3-apache-airflow-providers-telegram
Requires:	python3-apache-airflow-providers-trino
Requires:	python3-apache-airflow-providers-vertica
Requires:	python3-apache-airflow-providers-yandex
Requires:	python3-apache-airflow-providers-zendesk
Requires:	python3-azure-servicebus
Requires:	python3-mysql-connector-python
Requires:	python3-mysqlclient
Requires:	python3-sasl
Requires:	python3-aiohttp
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow
Requires:	python3-cassandra-driver
Requires:	python3-cloudant
Requires:	python3-databricks-sql-connector
Requires:	python3-dnspython
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-hmsclient
Requires:	python3-influxdb-client
Requires:	python3-neo4j
Requires:	python3-pandas
Requires:	python3-pinotdb
Requires:	python3-presto-python-client
Requires:	python3-psycopg2
Requires:	python3-pydruid
Requires:	python3-pyexasol
Requires:	python3-pyhive[hive]
Requires:	python3-pymongo
Requires:	python3-pymssql
Requires:	python3-arango
Requires:	python3-requests
Requires:	python3-requests
Requires:	python3-snakebite-py3
Requires:	python3-sqlalchemy-drill
Requires:	python3-thrift
Requires:	python3-trino
Requires:	python3-vertica-python
Requires:	python3-apache-airflow-providers-apache-cassandra
Requires:	python3-apache-airflow-providers-apache-drill
Requires:	python3-apache-airflow-providers-apache-druid
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-apache-pinot
Requires:	python3-apache-airflow-providers-arangodb
Requires:	python3-apache-airflow-providers-cloudant
Requires:	python3-apache-airflow-providers-databricks
Requires:	python3-apache-airflow-providers-exasol
Requires:	python3-apache-airflow-providers-influxdb
Requires:	python3-apache-airflow-providers-microsoft-mssql
Requires:	python3-apache-airflow-providers-mongo
Requires:	python3-apache-airflow-providers-mysql
Requires:	python3-apache-airflow-providers-neo4j
Requires:	python3-apache-airflow-providers-postgres
Requires:	python3-apache-airflow-providers-presto
Requires:	python3-apache-airflow-providers-trino
Requires:	python3-apache-airflow-providers-vertica
Requires:	python3-mysql-connector-python
Requires:	python3-mysqlclient
Requires:	python3-sasl
Requires:	python3-apache-airflow-providers-amazon
Requires:	python3-atlasclient
Requires:	python3-apache-airflow-providers-apache-beam
Requires:	python3-apache-airflow-providers-apache-cassandra
Requires:	python3-apache-airflow-providers-apache-drill
Requires:	python3-apache-airflow-providers-apache-druid
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-apache-kylin
Requires:	python3-apache-airflow-providers-apache-livy
Requires:	python3-apache-airflow-providers-apache-pig
Requires:	python3-apache-airflow-providers-apache-pinot
Requires:	python3-apache-airflow-providers-apache-spark
Requires:	python3-apache-airflow-providers-apache-sqoop
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-apache-airflow-providers-arangodb
Requires:	python3-apache-airflow-providers-asana
Requires:	python3-eventlet
Requires:	python3-gevent
Requires:	python3-greenlet
Requires:	python3-apache-airflow-providers-apache-atlas
Requires:	python3-apache-airflow-providers-atlassian-jira
Requires:	python3-apache-airflow-providers-amazon
Requires:	python3-apache-airflow-providers-microsoft-azure
Requires:	python3-apache-airflow-providers-apache-cassandra
Requires:	python3-apache-airflow
Requires:	python3-celery
Requires:	python3-flower
Requires:	python3-apache-airflow-providers-celery
Requires:	python3-cgroupspy
Requires:	python3-apache-airflow-providers-cloudant
Requires:	python3-apache-airflow
Requires:	python3-cryptography
Requires:	python3-kubernetes
Requires:	python3-apache-airflow-providers-cncf-kubernetes
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-cloudpickle
Requires:	python3-dask
Requires:	python3-distributed
Requires:	python3-apache-airflow-providers-databricks
Requires:	python3-apache-airflow-providers-datadog
Requires:	python3-apache-airflow-providers-dbt-cloud
Requires:	python3-requests
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow
Requires:	python3-astroid
Requires:	python3-asynctest
Requires:	python3-aws-xray-sdk
Requires:	python3-bcrypt
Requires:	python3-beautifulsoup4
Requires:	python3-black
Requires:	python3-blinker
Requires:	python3-bowler
Requires:	python3-cgroupspy
Requires:	python3-checksumdir
Requires:	python3-click
Requires:	python3-coverage
Requires:	python3-cryptography
Requires:	python3-docutils
Requires:	python3-eralchemy2
Requires:	python3-filelock
Requires:	python3-flake8-colors
Requires:	python3-flake8-implicit-str-concat
Requires:	python3-flake8
Requires:	python3-flaky
Requires:	python3-flask-bcrypt
Requires:	python3-freezegun
Requires:	python3-gitpython
Requires:	python3-ipdb
Requires:	python3-isort
Requires:	python3-jira
Requires:	python3-jsondiff
Requires:	python3-kubernetes
Requires:	python3-mongomock
Requires:	python3-moto[cloudformation,glue]
Requires:	python3-mypy
Requires:	python3-pandas
Requires:	python3-parameterized
Requires:	python3-paramiko
Requires:	python3-pipdeptree
Requires:	python3-pre-commit
Requires:	python3-pygithub
Requires:	python3-pypsrp
Requires:	python3-pytest
Requires:	python3-pytest-asyncio
Requires:	python3-pytest-capture-warnings
Requires:	python3-pytest-cov
Requires:	python3-pytest-httpx
Requires:	python3-pytest-instafail
Requires:	python3-pytest-rerunfailures
Requires:	python3-pytest-timeouts
Requires:	python3-pytest-xdist
Requires:	python3-jose
Requires:	python3-pywinrm
Requires:	python3-qds-sdk
Requires:	python3-requests-mock
Requires:	python3-rich-click
Requires:	python3-semver
Requires:	python3-sphinx-airflow-theme
Requires:	python3-sphinx-argparse
Requires:	python3-sphinx-autoapi
Requires:	python3-sphinx-copybutton
Requires:	python3-sphinx-jinja
Requires:	python3-sphinx-rtd-theme
Requires:	python3-sphinx
Requires:	python3-sphinxcontrib-httpdomain
Requires:	python3-sphinxcontrib-redoc
Requires:	python3-sphinxcontrib-spelling
Requires:	python3-time-machine
Requires:	python3-towncrier
Requires:	python3-twine
Requires:	python3-types-Deprecated
Requires:	python3-types-Markdown
Requires:	python3-types-PyMySQL
Requires:	python3-types-PyYAML
Requires:	python3-types-boto
Requires:	python3-types-certifi
Requires:	python3-types-croniter
Requires:	python3-types-docutils
Requires:	python3-types-freezegun
Requires:	python3-types-paramiko
Requires:	python3-types-protobuf
Requires:	python3-types-python-dateutil
Requires:	python3-types-python-slugify
Requires:	python3-types-pytz
Requires:	python3-types-redis
Requires:	python3-types-requests
Requires:	python3-types-setuptools
Requires:	python3-types-tabulate
Requires:	python3-types-termcolor
Requires:	python3-types-toml
Requires:	python3-wheel
Requires:	python3-yamllint
Requires:	python3-mysql-connector-python
Requires:	python3-mysqlclient
Requires:	python3-importlib-metadata
Requires:	python3-JIRA
Requires:	python3-PyOpenSSL
Requires:	python3-adal
Requires:	python3-aiohttp
Requires:	python3-amqp
Requires:	python3-analytics-python
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow
Requires:	python3-apache-airflow
Requires:	python3-apache-beam
Requires:	python3-arrow
Requires:	python3-asana
Requires:	python3-asgiref
Requires:	python3-astroid
Requires:	python3-asynctest
Requires:	python3-atlasclient
Requires:	python3-authlib
Requires:	python3-aws-xray-sdk
Requires:	python3-azure-batch
Requires:	python3-azure-cosmos
Requires:	python3-azure-datalake-store
Requires:	python3-azure-identity
Requires:	python3-azure-keyvault-secrets
Requires:	python3-azure-kusto-data
Requires:	python3-azure-mgmt-containerinstance
Requires:	python3-azure-mgmt-datafactory
Requires:	python3-azure-mgmt-datalake-store
Requires:	python3-azure-mgmt-resource
Requires:	python3-azure-storage-blob
Requires:	python3-azure-storage-common
Requires:	python3-azure-storage-file
Requires:	python3-azure-synapse-spark
Requires:	python3-bcrypt
Requires:	python3-beautifulsoup4
Requires:	python3-black
Requires:	python3-blinker
Requires:	python3-blinker
Requires:	python3-boto3
Requires:	python3-bowler
Requires:	python3-cassandra-driver
Requires:	python3-celery
Requires:	python3-cgroupspy
Requires:	python3-checksumdir
Requires:	python3-click
Requires:	python3-cloudant
Requires:	python3-cloudpickle
Requires:	python3-coverage
Requires:	python3-cryptography
Requires:	python3-dask
Requires:	python3-databricks-sql-connector
Requires:	python3-datadog
Requires:	python3-distributed
Requires:	python3-dnspython
Requires:	python3-docker
Requires:	python3-docutils
Requires:	python3-elasticsearch-dbapi
Requires:	python3-elasticsearch-dsl
Requires:	python3-elasticsearch
Requires:	python3-eralchemy2
Requires:	python3-eventlet
Requires:	python3-facebook-business
Requires:	python3-filelock
Requires:	python3-flake8-colors
Requires:	python3-flake8-implicit-str-concat
Requires:	python3-flake8
Requires:	python3-flaky
Requires:	python3-flask-appbuilder[oauth]
Requires:	python3-flask-bcrypt
Requires:	python3-flower
Requires:	python3-freezegun
Requires:	python3-gcloud-aio-bigquery
Requires:	python3-gcloud-aio-storage
Requires:	python3-gcloud-aio-auth
Requires:	python3-gevent
Requires:	python3-gitpython
Requires:	python3-google-ads
Requires:	python3-google-api-core
Requires:	python3-google-api-python-client
Requires:	python3-google-auth-httplib2
Requires:	python3-google-auth
Requires:	python3-google-auth
Requires:	python3-google-cloud-aiplatform
Requires:	python3-google-cloud-automl
Requires:	python3-google-cloud-bigquery-datatransfer
Requires:	python3-google-cloud-bigtable
Requires:	python3-google-cloud-build
Requires:	python3-google-cloud-compute
Requires:	python3-google-cloud-container
Requires:	python3-google-cloud-datacatalog
Requires:	python3-google-cloud-dataform
Requires:	python3-google-cloud-dataplex
Requires:	python3-google-cloud-dataproc-metastore
Requires:	python3-google-cloud-dataproc
Requires:	python3-google-cloud-dlp
Requires:	python3-google-cloud-kms
Requires:	python3-google-cloud-language
Requires:	python3-google-cloud-logging
Requires:	python3-google-cloud-memcache
Requires:	python3-google-cloud-monitoring
Requires:	python3-google-cloud-orchestration-airflow
Requires:	python3-google-cloud-os-login
Requires:	python3-google-cloud-pubsub
Requires:	python3-google-cloud-redis
Requires:	python3-google-cloud-secret-manager
Requires:	python3-google-cloud-spanner
Requires:	python3-google-cloud-speech
Requires:	python3-google-cloud-storage
Requires:	python3-google-cloud-tasks
Requires:	python3-google-cloud-texttospeech
Requires:	python3-google-cloud-translate
Requires:	python3-google-cloud-videointelligence
Requires:	python3-google-cloud-vision
Requires:	python3-google-cloud-workflows
Requires:	python3-greenlet
Requires:	python3-grpcio-gcp
Requires:	python3-grpcio
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-hmsclient
Requires:	python3-httpx
Requires:	python3-hvac
Requires:	python3-influxdb-client
Requires:	python3-ipdb
Requires:	python3-isort
Requires:	python3-jaydebeapi
Requires:	python3-jira
Requires:	python3-json-merge-patch
Requires:	python3-jsondiff
Requires:	python3-jsonpath-ng
Requires:	python3-kubernetes
Requires:	python3-kylinpy
Requires:	python3-ldap3
Requires:	python3-looker-sdk
Requires:	python3-mongomock
Requires:	python3-moto[cloudformation,glue]
Requires:	python3-mypy-boto3-appflow
Requires:	python3-mypy-boto3-rds
Requires:	python3-mypy-boto3-redshift-data
Requires:	python3-mypy
Requires:	python3-neo4j
Requires:	python3-opsgenie-sdk
Requires:	python3-oracledb
Requires:	python3-oss2
Requires:	python3-pandas-gbq
Requires:	python3-pandas
Requires:	python3-papermill[all]
Requires:	python3-parameterized
Requires:	python3-paramiko
Requires:	python3-paramiko
Requires:	python3-pdpyras
Requires:	python3-pinotdb
Requires:	python3-pipdeptree
Requires:	python3-plyvel
Requires:	python3-pre-commit
Requires:	python3-presto-python-client
Requires:	python3-proto-plus
Requires:	python3-protobuf
Requires:	python3-psycopg2
Requires:	python3-pydruid
Requires:	python3-pyexasol
Requires:	python3-pygithub
Requires:	python3-pyhive[hive]
Requires:	python3-pykerberos
Requires:	python3-pymongo
Requires:	python3-pymssql
Requires:	python3-pyodbc
Requires:	python3-pypsrp
Requires:	python3-pypsrp
Requires:	python3-pyspark
Requires:	python3-pytest
Requires:	python3-pytest-asyncio
Requires:	python3-pytest-capture-warnings
Requires:	python3-pytest-cov
Requires:	python3-pytest-httpx
Requires:	python3-pytest-instafail
Requires:	python3-pytest-rerunfailures
Requires:	python3-pytest-timeouts
Requires:	python3-pytest-xdist
Requires:	python3-arango
Requires:	python3-dotenv
Requires:	python3-jenkins
Requires:	python3-jose
Requires:	python3-ldap
Requires:	python3-telegram-bot
Requires:	python3-pywinrm
Requires:	python3-pywinrm
Requires:	python3-qds-sdk
Requires:	python3-qds-sdk
Requires:	python3-redis
Requires:	python3-redshift-connector
Requires:	python3-requests
Requires:	python3-requests
Requires:	python3-requests-kerberos
Requires:	python3-requests-mock
Requires:	python3-requests-toolbelt
Requires:	python3-rich-click
Requires:	python3-scrapbook[all]
Requires:	python3-semver
Requires:	python3-sendgrid
Requires:	python3-sentry-sdk
Requires:	python3-simple-salesforce
Requires:	python3-slack-sdk
Requires:	python3-smbprotocol
Requires:	python3-snowflake-connector-python
Requires:	python3-snowflake-sqlalchemy
Requires:	python3-sphinx-airflow-theme
Requires:	python3-sphinx-argparse
Requires:	python3-sphinx-autoapi
Requires:	python3-sphinx-copybutton
Requires:	python3-sphinx-jinja
Requires:	python3-sphinx-rtd-theme
Requires:	python3-sphinx
Requires:	python3-sphinxcontrib-httpdomain
Requires:	python3-sphinxcontrib-redoc
Requires:	python3-sphinxcontrib-spelling
Requires:	python3-spython
Requires:	python3-sqlalchemy-bigquery
Requires:	python3-sqlalchemy-drill
Requires:	python3-sqlalchemy-redshift
Requires:	python3-sqlparse
Requires:	python3-sshtunnel
Requires:	python3-statsd
Requires:	python3-tableauserverclient
Requires:	python3-thrift
Requires:	python3-thrift-sasl
Requires:	python3-time-machine
Requires:	python3-towncrier
Requires:	python3-trino
Requires:	python3-twine
Requires:	python3-types-Deprecated
Requires:	python3-types-Markdown
Requires:	python3-types-PyMySQL
Requires:	python3-types-PyYAML
Requires:	python3-types-boto
Requires:	python3-types-certifi
Requires:	python3-types-croniter
Requires:	python3-types-docutils
Requires:	python3-types-freezegun
Requires:	python3-types-paramiko
Requires:	python3-types-protobuf
Requires:	python3-types-python-dateutil
Requires:	python3-types-python-slugify
Requires:	python3-types-pytz
Requires:	python3-types-redis
Requires:	python3-types-requests
Requires:	python3-types-setuptools
Requires:	python3-types-tabulate
Requires:	python3-types-termcolor
Requires:	python3-types-toml
Requires:	python3-vertica-python
Requires:	python3-virtualenv
Requires:	python3-watchtower
Requires:	python3-wheel
Requires:	python3-yamllint
Requires:	python3-yandexcloud
Requires:	python3-zenpy
Requires:	python3-apache-airflow-providers-airbyte
Requires:	python3-apache-airflow-providers-alibaba
Requires:	python3-apache-airflow-providers-amazon
Requires:	python3-apache-airflow-providers-apache-beam
Requires:	python3-apache-airflow-providers-apache-cassandra
Requires:	python3-apache-airflow-providers-apache-drill
Requires:	python3-apache-airflow-providers-apache-druid
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-apache-kylin
Requires:	python3-apache-airflow-providers-apache-livy
Requires:	python3-apache-airflow-providers-apache-pig
Requires:	python3-apache-airflow-providers-apache-pinot
Requires:	python3-apache-airflow-providers-apache-spark
Requires:	python3-apache-airflow-providers-apache-sqoop
Requires:	python3-apache-airflow-providers-arangodb
Requires:	python3-apache-airflow-providers-asana
Requires:	python3-apache-airflow-providers-atlassian-jira
Requires:	python3-apache-airflow-providers-celery
Requires:	python3-apache-airflow-providers-cloudant
Requires:	python3-apache-airflow-providers-cncf-kubernetes
Requires:	python3-apache-airflow-providers-databricks
Requires:	python3-apache-airflow-providers-datadog
Requires:	python3-apache-airflow-providers-dbt-cloud
Requires:	python3-apache-airflow-providers-dingding
Requires:	python3-apache-airflow-providers-discord
Requires:	python3-apache-airflow-providers-docker
Requires:	python3-apache-airflow-providers-elasticsearch
Requires:	python3-apache-airflow-providers-exasol
Requires:	python3-apache-airflow-providers-facebook
Requires:	python3-apache-airflow-providers-ftp
Requires:	python3-apache-airflow-providers-github
Requires:	python3-apache-airflow-providers-google
Requires:	python3-apache-airflow-providers-grpc
Requires:	python3-apache-airflow-providers-hashicorp
Requires:	python3-apache-airflow-providers-http
Requires:	python3-apache-airflow-providers-imap
Requires:	python3-apache-airflow-providers-influxdb
Requires:	python3-apache-airflow-providers-jdbc
Requires:	python3-apache-airflow-providers-jenkins
Requires:	python3-apache-airflow-providers-microsoft-azure
Requires:	python3-apache-airflow-providers-microsoft-mssql
Requires:	python3-apache-airflow-providers-microsoft-psrp
Requires:	python3-apache-airflow-providers-microsoft-winrm
Requires:	python3-apache-airflow-providers-mongo
Requires:	python3-apache-airflow-providers-mysql
Requires:	python3-apache-airflow-providers-neo4j
Requires:	python3-apache-airflow-providers-odbc
Requires:	python3-apache-airflow-providers-openfaas
Requires:	python3-apache-airflow-providers-opsgenie
Requires:	python3-apache-airflow-providers-oracle
Requires:	python3-apache-airflow-providers-pagerduty
Requires:	python3-apache-airflow-providers-papermill
Requires:	python3-apache-airflow-providers-plexus
Requires:	python3-apache-airflow-providers-postgres
Requires:	python3-apache-airflow-providers-presto
Requires:	python3-apache-airflow-providers-qubole
Requires:	python3-apache-airflow-providers-redis
Requires:	python3-apache-airflow-providers-salesforce
Requires:	python3-apache-airflow-providers-samba
Requires:	python3-apache-airflow-providers-segment
Requires:	python3-apache-airflow-providers-sendgrid
Requires:	python3-apache-airflow-providers-sftp
Requires:	python3-apache-airflow-providers-singularity
Requires:	python3-apache-airflow-providers-slack
Requires:	python3-apache-airflow-providers-snowflake
Requires:	python3-apache-airflow-providers-sqlite
Requires:	python3-apache-airflow-providers-ssh
Requires:	python3-apache-airflow-providers-tableau
Requires:	python3-apache-airflow-providers-tabular
Requires:	python3-apache-airflow-providers-telegram
Requires:	python3-apache-airflow-providers-trino
Requires:	python3-apache-airflow-providers-vertica
Requires:	python3-apache-airflow-providers-yandex
Requires:	python3-apache-airflow-providers-zendesk
Requires:	python3-azure-servicebus
Requires:	python3-mysql-connector-python
Requires:	python3-mysqlclient
Requires:	python3-importlib-metadata
Requires:	python3-sasl
Requires:	python3-JIRA
Requires:	python3-PyOpenSSL
Requires:	python3-adal
Requires:	python3-aiohttp
Requires:	python3-amqp
Requires:	python3-analytics-python
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow
Requires:	python3-apache-airflow
Requires:	python3-apache-beam
Requires:	python3-arrow
Requires:	python3-asana
Requires:	python3-asgiref
Requires:	python3-astroid
Requires:	python3-asynctest
Requires:	python3-atlasclient
Requires:	python3-authlib
Requires:	python3-aws-xray-sdk
Requires:	python3-azure-batch
Requires:	python3-azure-cosmos
Requires:	python3-azure-datalake-store
Requires:	python3-azure-identity
Requires:	python3-azure-keyvault-secrets
Requires:	python3-azure-kusto-data
Requires:	python3-azure-mgmt-containerinstance
Requires:	python3-azure-mgmt-datafactory
Requires:	python3-azure-mgmt-datalake-store
Requires:	python3-azure-mgmt-resource
Requires:	python3-azure-storage-blob
Requires:	python3-azure-storage-common
Requires:	python3-azure-storage-file
Requires:	python3-azure-synapse-spark
Requires:	python3-bcrypt
Requires:	python3-beautifulsoup4
Requires:	python3-black
Requires:	python3-blinker
Requires:	python3-blinker
Requires:	python3-boto3
Requires:	python3-bowler
Requires:	python3-cassandra-driver
Requires:	python3-celery
Requires:	python3-cgroupspy
Requires:	python3-checksumdir
Requires:	python3-click
Requires:	python3-cloudant
Requires:	python3-cloudpickle
Requires:	python3-coverage
Requires:	python3-cryptography
Requires:	python3-dask
Requires:	python3-databricks-sql-connector
Requires:	python3-datadog
Requires:	python3-distributed
Requires:	python3-dnspython
Requires:	python3-docker
Requires:	python3-docutils
Requires:	python3-elasticsearch-dbapi
Requires:	python3-elasticsearch-dsl
Requires:	python3-elasticsearch
Requires:	python3-eralchemy2
Requires:	python3-eventlet
Requires:	python3-facebook-business
Requires:	python3-filelock
Requires:	python3-flake8-colors
Requires:	python3-flake8-implicit-str-concat
Requires:	python3-flake8
Requires:	python3-flaky
Requires:	python3-flask-appbuilder[oauth]
Requires:	python3-flask-bcrypt
Requires:	python3-flower
Requires:	python3-freezegun
Requires:	python3-gcloud-aio-bigquery
Requires:	python3-gcloud-aio-storage
Requires:	python3-gcloud-aio-auth
Requires:	python3-gevent
Requires:	python3-gitpython
Requires:	python3-google-ads
Requires:	python3-google-api-core
Requires:	python3-google-api-python-client
Requires:	python3-google-auth-httplib2
Requires:	python3-google-auth
Requires:	python3-google-auth
Requires:	python3-google-cloud-aiplatform
Requires:	python3-google-cloud-automl
Requires:	python3-google-cloud-bigquery-datatransfer
Requires:	python3-google-cloud-bigtable
Requires:	python3-google-cloud-build
Requires:	python3-google-cloud-compute
Requires:	python3-google-cloud-container
Requires:	python3-google-cloud-datacatalog
Requires:	python3-google-cloud-dataform
Requires:	python3-google-cloud-dataplex
Requires:	python3-google-cloud-dataproc-metastore
Requires:	python3-google-cloud-dataproc
Requires:	python3-google-cloud-dlp
Requires:	python3-google-cloud-kms
Requires:	python3-google-cloud-language
Requires:	python3-google-cloud-logging
Requires:	python3-google-cloud-memcache
Requires:	python3-google-cloud-monitoring
Requires:	python3-google-cloud-orchestration-airflow
Requires:	python3-google-cloud-os-login
Requires:	python3-google-cloud-pubsub
Requires:	python3-google-cloud-redis
Requires:	python3-google-cloud-secret-manager
Requires:	python3-google-cloud-spanner
Requires:	python3-google-cloud-speech
Requires:	python3-google-cloud-storage
Requires:	python3-google-cloud-tasks
Requires:	python3-google-cloud-texttospeech
Requires:	python3-google-cloud-translate
Requires:	python3-google-cloud-videointelligence
Requires:	python3-google-cloud-vision
Requires:	python3-google-cloud-workflows
Requires:	python3-greenlet
Requires:	python3-grpcio-gcp
Requires:	python3-grpcio
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-hmsclient
Requires:	python3-httpx
Requires:	python3-hvac
Requires:	python3-influxdb-client
Requires:	python3-ipdb
Requires:	python3-isort
Requires:	python3-jaydebeapi
Requires:	python3-jira
Requires:	python3-json-merge-patch
Requires:	python3-jsondiff
Requires:	python3-jsonpath-ng
Requires:	python3-kubernetes
Requires:	python3-kylinpy
Requires:	python3-ldap3
Requires:	python3-looker-sdk
Requires:	python3-mongomock
Requires:	python3-moto[cloudformation,glue]
Requires:	python3-mypy-boto3-appflow
Requires:	python3-mypy-boto3-rds
Requires:	python3-mypy-boto3-redshift-data
Requires:	python3-mypy
Requires:	python3-neo4j
Requires:	python3-opsgenie-sdk
Requires:	python3-oracledb
Requires:	python3-oss2
Requires:	python3-pandas-gbq
Requires:	python3-pandas
Requires:	python3-papermill[all]
Requires:	python3-parameterized
Requires:	python3-paramiko
Requires:	python3-paramiko
Requires:	python3-pdpyras
Requires:	python3-pinotdb
Requires:	python3-pipdeptree
Requires:	python3-plyvel
Requires:	python3-pre-commit
Requires:	python3-presto-python-client
Requires:	python3-proto-plus
Requires:	python3-protobuf
Requires:	python3-psycopg2
Requires:	python3-pydruid
Requires:	python3-pyexasol
Requires:	python3-pygithub
Requires:	python3-pyhive[hive]
Requires:	python3-pykerberos
Requires:	python3-pymongo
Requires:	python3-pymssql
Requires:	python3-pyodbc
Requires:	python3-pypsrp
Requires:	python3-pypsrp
Requires:	python3-pyspark
Requires:	python3-pytest
Requires:	python3-pytest-asyncio
Requires:	python3-pytest-capture-warnings
Requires:	python3-pytest-cov
Requires:	python3-pytest-httpx
Requires:	python3-pytest-instafail
Requires:	python3-pytest-rerunfailures
Requires:	python3-pytest-timeouts
Requires:	python3-pytest-xdist
Requires:	python3-arango
Requires:	python3-dotenv
Requires:	python3-jenkins
Requires:	python3-jose
Requires:	python3-ldap
Requires:	python3-telegram-bot
Requires:	python3-pywinrm
Requires:	python3-pywinrm
Requires:	python3-qds-sdk
Requires:	python3-qds-sdk
Requires:	python3-redis
Requires:	python3-redshift-connector
Requires:	python3-requests
Requires:	python3-requests
Requires:	python3-requests-kerberos
Requires:	python3-requests-mock
Requires:	python3-requests-toolbelt
Requires:	python3-rich-click
Requires:	python3-scrapbook[all]
Requires:	python3-semver
Requires:	python3-sendgrid
Requires:	python3-sentry-sdk
Requires:	python3-simple-salesforce
Requires:	python3-slack-sdk
Requires:	python3-smbprotocol
Requires:	python3-snowflake-connector-python
Requires:	python3-snowflake-sqlalchemy
Requires:	python3-sphinx-airflow-theme
Requires:	python3-sphinx-argparse
Requires:	python3-sphinx-autoapi
Requires:	python3-sphinx-copybutton
Requires:	python3-sphinx-jinja
Requires:	python3-sphinx-rtd-theme
Requires:	python3-sphinx
Requires:	python3-sphinxcontrib-httpdomain
Requires:	python3-sphinxcontrib-redoc
Requires:	python3-sphinxcontrib-spelling
Requires:	python3-spython
Requires:	python3-sqlalchemy-bigquery
Requires:	python3-sqlalchemy-drill
Requires:	python3-sqlalchemy-redshift
Requires:	python3-sqlparse
Requires:	python3-sshtunnel
Requires:	python3-statsd
Requires:	python3-tableauserverclient
Requires:	python3-thrift
Requires:	python3-thrift-sasl
Requires:	python3-time-machine
Requires:	python3-towncrier
Requires:	python3-trino
Requires:	python3-twine
Requires:	python3-types-Deprecated
Requires:	python3-types-Markdown
Requires:	python3-types-PyMySQL
Requires:	python3-types-PyYAML
Requires:	python3-types-boto
Requires:	python3-types-certifi
Requires:	python3-types-croniter
Requires:	python3-types-docutils
Requires:	python3-types-freezegun
Requires:	python3-types-paramiko
Requires:	python3-types-protobuf
Requires:	python3-types-python-dateutil
Requires:	python3-types-python-slugify
Requires:	python3-types-pytz
Requires:	python3-types-redis
Requires:	python3-types-requests
Requires:	python3-types-setuptools
Requires:	python3-types-tabulate
Requires:	python3-types-termcolor
Requires:	python3-types-toml
Requires:	python3-vertica-python
Requires:	python3-virtualenv
Requires:	python3-watchtower
Requires:	python3-wheel
Requires:	python3-yamllint
Requires:	python3-yandexcloud
Requires:	python3-zenpy
Requires:	python3-apache-airflow-providers-airbyte
Requires:	python3-apache-airflow-providers-alibaba
Requires:	python3-apache-airflow-providers-amazon
Requires:	python3-apache-airflow-providers-apache-beam
Requires:	python3-apache-airflow-providers-apache-cassandra
Requires:	python3-apache-airflow-providers-apache-drill
Requires:	python3-apache-airflow-providers-apache-druid
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-apache-kylin
Requires:	python3-apache-airflow-providers-apache-livy
Requires:	python3-apache-airflow-providers-apache-pig
Requires:	python3-apache-airflow-providers-apache-pinot
Requires:	python3-apache-airflow-providers-apache-spark
Requires:	python3-apache-airflow-providers-apache-sqoop
Requires:	python3-apache-airflow-providers-arangodb
Requires:	python3-apache-airflow-providers-asana
Requires:	python3-apache-airflow-providers-atlassian-jira
Requires:	python3-apache-airflow-providers-celery
Requires:	python3-apache-airflow-providers-cloudant
Requires:	python3-apache-airflow-providers-cncf-kubernetes
Requires:	python3-apache-airflow-providers-databricks
Requires:	python3-apache-airflow-providers-datadog
Requires:	python3-apache-airflow-providers-dbt-cloud
Requires:	python3-apache-airflow-providers-dingding
Requires:	python3-apache-airflow-providers-discord
Requires:	python3-apache-airflow-providers-docker
Requires:	python3-apache-airflow-providers-elasticsearch
Requires:	python3-apache-airflow-providers-exasol
Requires:	python3-apache-airflow-providers-facebook
Requires:	python3-apache-airflow-providers-ftp
Requires:	python3-apache-airflow-providers-github
Requires:	python3-apache-airflow-providers-google
Requires:	python3-apache-airflow-providers-grpc
Requires:	python3-apache-airflow-providers-hashicorp
Requires:	python3-apache-airflow-providers-http
Requires:	python3-apache-airflow-providers-imap
Requires:	python3-apache-airflow-providers-influxdb
Requires:	python3-apache-airflow-providers-jdbc
Requires:	python3-apache-airflow-providers-jenkins
Requires:	python3-apache-airflow-providers-microsoft-azure
Requires:	python3-apache-airflow-providers-microsoft-mssql
Requires:	python3-apache-airflow-providers-microsoft-psrp
Requires:	python3-apache-airflow-providers-microsoft-winrm
Requires:	python3-apache-airflow-providers-mongo
Requires:	python3-apache-airflow-providers-mysql
Requires:	python3-apache-airflow-providers-neo4j
Requires:	python3-apache-airflow-providers-odbc
Requires:	python3-apache-airflow-providers-openfaas
Requires:	python3-apache-airflow-providers-opsgenie
Requires:	python3-apache-airflow-providers-oracle
Requires:	python3-apache-airflow-providers-pagerduty
Requires:	python3-apache-airflow-providers-papermill
Requires:	python3-apache-airflow-providers-plexus
Requires:	python3-apache-airflow-providers-postgres
Requires:	python3-apache-airflow-providers-presto
Requires:	python3-apache-airflow-providers-qubole
Requires:	python3-apache-airflow-providers-redis
Requires:	python3-apache-airflow-providers-salesforce
Requires:	python3-apache-airflow-providers-samba
Requires:	python3-apache-airflow-providers-segment
Requires:	python3-apache-airflow-providers-sendgrid
Requires:	python3-apache-airflow-providers-sftp
Requires:	python3-apache-airflow-providers-singularity
Requires:	python3-apache-airflow-providers-slack
Requires:	python3-apache-airflow-providers-snowflake
Requires:	python3-apache-airflow-providers-sqlite
Requires:	python3-apache-airflow-providers-ssh
Requires:	python3-apache-airflow-providers-tableau
Requires:	python3-apache-airflow-providers-tabular
Requires:	python3-apache-airflow-providers-telegram
Requires:	python3-apache-airflow-providers-trino
Requires:	python3-apache-airflow-providers-vertica
Requires:	python3-apache-airflow-providers-yandex
Requires:	python3-apache-airflow-providers-zendesk
Requires:	python3-azure-servicebus
Requires:	python3-mysql-connector-python
Requires:	python3-mysqlclient
Requires:	python3-importlib-metadata
Requires:	python3-sasl
Requires:	python3-apache-airflow-providers-common-sql
Requires:	python3-apache-airflow
Requires:	python3-astroid
Requires:	python3-asynctest
Requires:	python3-aws-xray-sdk
Requires:	python3-bcrypt
Requires:	python3-beautifulsoup4
Requires:	python3-black
Requires:	python3-blinker
Requires:	python3-bowler
Requires:	python3-cgroupspy
Requires:	python3-checksumdir
Requires:	python3-click
Requires:	python3-coverage
Requires:	python3-cryptography
Requires:	python3-docutils
Requires:	python3-eralchemy2
Requires:	python3-filelock
Requires:	python3-flake8-colors
Requires:	python3-flake8-implicit-str-concat
Requires:	python3-flake8
Requires:	python3-flaky
Requires:	python3-flask-bcrypt
Requires:	python3-freezegun
Requires:	python3-gitpython
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-hmsclient
Requires:	python3-ipdb
Requires:	python3-isort
Requires:	python3-jira
Requires:	python3-jsondiff
Requires:	python3-kubernetes
Requires:	python3-mongomock
Requires:	python3-moto[cloudformation,glue]
Requires:	python3-mypy
Requires:	python3-pandas
Requires:	python3-parameterized
Requires:	python3-paramiko
Requires:	python3-pipdeptree
Requires:	python3-pre-commit
Requires:	python3-presto-python-client
Requires:	python3-pygithub
Requires:	python3-pyhive[hive]
Requires:	python3-pykerberos
Requires:	python3-pypsrp
Requires:	python3-pytest
Requires:	python3-pytest-asyncio
Requires:	python3-pytest-capture-warnings
Requires:	python3-pytest-cov
Requires:	python3-pytest-httpx
Requires:	python3-pytest-instafail
Requires:	python3-pytest-rerunfailures
Requires:	python3-pytest-timeouts
Requires:	python3-pytest-xdist
Requires:	python3-jose
Requires:	python3-pywinrm
Requires:	python3-qds-sdk
Requires:	python3-requests-kerberos
Requires:	python3-requests-mock
Requires:	python3-rich-click
Requires:	python3-semver
Requires:	python3-snakebite-py3
Requires:	python3-sphinx-airflow-theme
Requires:	python3-sphinx-argparse
Requires:	python3-sphinx-autoapi
Requires:	python3-sphinx-copybutton
Requires:	python3-sphinx-jinja
Requires:	python3-sphinx-rtd-theme
Requires:	python3-sphinx
Requires:	python3-sphinxcontrib-httpdomain
Requires:	python3-sphinxcontrib-redoc
Requires:	python3-sphinxcontrib-spelling
Requires:	python3-thrift
Requires:	python3-thrift-sasl
Requires:	python3-time-machine
Requires:	python3-towncrier
Requires:	python3-twine
Requires:	python3-types-Deprecated
Requires:	python3-types-Markdown
Requires:	python3-types-PyMySQL
Requires:	python3-types-PyYAML
Requires:	python3-types-boto
Requires:	python3-types-certifi
Requires:	python3-types-croniter
Requires:	python3-types-docutils
Requires:	python3-types-freezegun
Requires:	python3-types-paramiko
Requires:	python3-types-protobuf
Requires:	python3-types-python-dateutil
Requires:	python3-types-python-slugify
Requires:	python3-types-pytz
Requires:	python3-types-redis
Requires:	python3-types-requests
Requires:	python3-types-setuptools
Requires:	python3-types-tabulate
Requires:	python3-types-termcolor
Requires:	python3-types-toml
Requires:	python3-wheel
Requires:	python3-yamllint
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-presto
Requires:	python3-apache-airflow-providers-trino
Requires:	python3-mysql-connector-python
Requires:	python3-mysqlclient
Requires:	python3-importlib-metadata
Requires:	python3-sasl
Requires:	python3-apache-airflow-providers-dingding
Requires:	python3-apache-airflow-providers-discord
Requires:	python3-astroid
Requires:	python3-checksumdir
Requires:	python3-click
Requires:	python3-docutils
Requires:	python3-eralchemy2
Requires:	python3-sphinx-airflow-theme
Requires:	python3-sphinx-argparse
Requires:	python3-sphinx-autoapi
Requires:	python3-sphinx-copybutton
Requires:	python3-sphinx-jinja
Requires:	python3-sphinx-rtd-theme
Requires:	python3-sphinx
Requires:	python3-sphinxcontrib-httpdomain
Requires:	python3-sphinxcontrib-redoc
Requires:	python3-sphinxcontrib-spelling
Requires:	python3-importlib-metadata
Requires:	python3-eralchemy2
Requires:	python3-apache-airflow-providers-docker
Requires:	python3-apache-airflow-providers-apache-druid
Requires:	python3-apache-airflow-providers-elasticsearch
Requires:	python3-apache-airflow-providers-exasol
Requires:	python3-apache-airflow-providers-facebook
Requires:	python3-apache-airflow-providers-ftp
Requires:	python3-apache-airflow-providers-google
Requires:	python3-apache-airflow-providers-google
Requires:	python3-apache-airflow-providers-github
Requires:	python3-authlib
Requires:	python3-flask-appbuilder[oauth]
Requires:	python3-apache-airflow-providers-google
Requires:	python3-authlib
Requires:	python3-flask-appbuilder[oauth]
Requires:	python3-apache-airflow-providers-grpc
Requires:	python3-apache-airflow-providers-hashicorp
Requires:	python3-apache-airflow-providers-apache-hdfs
Requires:	python3-apache-airflow-providers-apache-hive
Requires:	python3-apache-airflow-providers-http
Requires:	python3-apache-airflow-providers-imap
Requires:	python3-apache-airflow-providers-influxdb
Requires:	python3-apache-airflow-providers-jdbc
Requires:	python3-apache-airflow-providers-jenkins
Requires:	python3-pykerberos
Requires:	python3-requests-kerberos
Requires:	python3-thrift-sasl
Requires:	python3-apache-airflow
Requires:	python3-cryptography
Requires:	python3-kubernetes
Requires:	python3-apache-airflow-providers-cncf-kubernetes
Requires:	python3-ldap3
Requires:	python3-ldap
Requires:	python3-plyvel
Requires:	python3-apache-airflow-providers-microsoft-azure
Requires:	python3-apache-airflow-providers-microsoft-mssql
Requires:	python3-apache-airflow-providers-microsoft-psrp
Requires:	python3-apache-airflow-providers-microsoft-winrm
Requires:	python3-apache-airflow-providers-mongo
Requires:	python3-apache-airflow-providers-microsoft-mssql
Requires:	python3-apache-airflow-providers-mysql
Requires:	python3-apache-airflow-providers-neo4j
Requires:	python3-apache-airflow-providers-odbc
Requires:	python3-apache-airflow-providers-openfaas
Requires:	python3-apache-airflow-providers-opsgenie
Requires:	python3-apache-airflow-providers-oracle
Requires:	python3-apache-airflow-providers-pagerduty
Requires:	python3-pandas
Requires:	python3-apache-airflow-providers-papermill
Requires:	python3-bcrypt
Requires:	python3-flask-bcrypt
Requires:	python3-apache-airflow-providers-apache-pinot
Requires:	python3-apache-airflow-providers-plexus
Requires:	python3-apache-airflow-providers-postgres
Requires:	python3-apache-airflow-providers-presto
Requires:	python3-apache-airflow-providers-qubole
Requires:	python3-apache-airflow-providers-qubole
Requires:	python3-amqp
Requires:	python3-apache-airflow-providers-redis
Requires:	python3-apache-airflow-providers-amazon
Requires:	python3-apache-airflow-providers-salesforce
Requires:	python3-apache-airflow-providers-samba
Requires:	python3-apache-airflow-providers-segment
Requires:	python3-apache-airflow-providers-sendgrid
Requires:	python3-blinker
Requires:	python3-sentry-sdk
Requires:	python3-apache-airflow-providers-sftp
Requires:	python3-apache-airflow-providers-singularity
Requires:	python3-apache-airflow-providers-slack
Requires:	python3-apache-airflow-providers-snowflake
Requires:	python3-apache-airflow-providers-apache-spark
Requires:	python3-apache-airflow-providers-sqlite
Requires:	python3-apache-airflow-providers-ssh
Requires:	python3-statsd
Requires:	python3-apache-airflow-providers-tableau
Requires:	python3-apache-airflow-providers-tabular
Requires:	python3-apache-airflow-providers-telegram
Requires:	python3-apache-airflow-providers-trino
Requires:	python3-apache-airflow-providers-vertica
Requires:	python3-virtualenv
Requires:	python3-hdfs[avro,dataframe,kerberos]
Requires:	python3-apache-airflow-providers-microsoft-winrm
Requires:	python3-apache-airflow-providers-yandex
Requires:	python3-apache-airflow-providers-zendesk

%description
<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-->

# Apache Airflow

[![PyPI version](https://badge.fury.io/py/apache-airflow.svg)](https://badge.fury.io/py/apache-airflow)
[![GitHub Build](https://github.com/apache/airflow/workflows/CI%20Build/badge.svg)](https://github.com/apache/airflow/actions)
[![Coverage Status](https://img.shields.io/codecov/c/github/apache/airflow/main.svg)](https://codecov.io/github/apache/airflow?branch=main)
[![License](https://img.shields.io/:license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/apache-airflow.svg)](https://pypi.org/project/apache-airflow/)
[![Docker Pulls](https://img.shields.io/docker/pulls/apache/airflow.svg)](https://hub.docker.com/r/apache/airflow)
[![Docker Stars](https://img.shields.io/docker/stars/apache/airflow.svg)](https://hub.docker.com/r/apache/airflow)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/apache-airflow)](https://pypi.org/project/apache-airflow/)
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/apache-airflow)](https://artifacthub.io/packages/search?repo=apache-airflow)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Twitter Follow](https://img.shields.io/twitter/follow/ApacheAirflow.svg?style=social&label=Follow)](https://twitter.com/ApacheAirflow)
[![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://s.apache.org/airflow-slack)
[![Contributors](https://img.shields.io/github/contributors/apache/airflow)](https://github.com/apache/airflow/graphs/contributors)

[Apache Airflow](https://airflow.apache.org/docs/apache-airflow/stable/) (or simply Airflow) is a platform to programmatically author, schedule, and monitor workflows.

When workflows are defined as code, they become more maintainable, versionable, testable, and collaborative.

Use Airflow to author workflows as directed acyclic graphs (DAGs) of tasks. The Airflow scheduler executes your tasks on an array of workers while following the specified dependencies. Rich command line utilities make performing complex surgeries on DAGs a snap. The rich user interface makes it easy to visualize pipelines running in production, monitor progress, and troubleshoot issues when needed.

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of contents**

- [Project Focus](#project-focus)
- [Principles](#principles)
- [Requirements](#requirements)
- [Getting started](#getting-started)
- [Installing from PyPI](#installing-from-pypi)
- [Official source code](#official-source-code)
- [Convenience packages](#convenience-packages)
- [User Interface](#user-interface)
- [Semantic versioning](#semantic-versioning)
- [Version Life Cycle](#version-life-cycle)
- [Support for Python and Kubernetes versions](#support-for-python-and-kubernetes-versions)
- [Base OS support for reference Airflow images](#base-os-support-for-reference-airflow-images)
- [Approach to dependencies of Airflow](#approach-to-dependencies-of-airflow)
- [Release process for Providers](#release-process-for-providers)
- [Contributing](#contributing)
- [Who uses Apache Airflow?](#who-uses-apache-airflow)
- [Who Maintains Apache Airflow?](#who-maintains-apache-airflow)
- [Can I use the Apache Airflow logo in my presentation?](#can-i-use-the-apache-airflow-logo-in-my-presentation)
- [Airflow merchandise](#airflow-merchandise)
- [Links](#links)
- [Sponsors](#sponsors)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## Project Focus

Airflow works best with workflows that are mostly static and slowly changing. When the DAG structure is similar from one run to the next, it clarifies the unit of work and continuity. Other similar projects include [Luigi](https://github.com/spotify/luigi), [Oozie](https://oozie.apache.org/) and [Azkaban](https://azkaban.github.io/).

Airflow is commonly used to process data, but has the opinion that tasks should ideally be idempotent (i.e., results of the task will be the same, and will not create duplicated data in a destination system), and should not pass large quantities of data from one task to the next (though tasks can pass metadata using Airflow's [XCom feature](https://airflow.apache.org/docs/apache-airflow/stable/concepts/xcoms.html)). For high-volume, data-intensive tasks, a best practice is to delegate to external services specializing in that type of work.

Airflow is not a streaming solution, but it is often used to process real-time data, pulling data off streams in batches.

## Principles

- **Dynamic**: Airflow pipelines are configuration as code (Python), allowing for dynamic pipeline generation. This allows for writing code that instantiates pipelines dynamically.
- **Extensible**: Easily define your own operators, executors and extend the library so that it fits the level of abstraction that suits your environment.
- **Elegant**: Airflow pipelines are lean and explicit. Parameterizing your scripts is built into the core of Airflow using the powerful **Jinja** templating engine.
- **Scalable**: Airflow has a modular architecture and uses a message queue to orchestrate an arbitrary number of workers.

## Requirements

Apache Airflow is tested with:

|                     | Main version (dev)           | Stable version (2.5.3)       |
|---------------------|------------------------------|------------------------------|
| Python              | 3.7, 3.8, 3.9, 3.10          | 3.7, 3.8, 3.9, 3.10          |
| Platform            | AMD64/ARM64(\*)              | AMD64/ARM64(\*)              |
| Kubernetes          | 1.21, 1.22, 1.23, 1.24, 1.25 | 1.21, 1.22, 1.23, 1.24, 1.25 |
| PostgreSQL          | 11, 12, 13, 14, 15           | 11, 12, 13, 14, 15           |
| MySQL               | 5.7, 8                       | 5.7, 8                       |
| SQLite              | 3.15.0+                      | 3.15.0+                      |
| MSSQL               | 2017(\*), 2019 (\*)          | 2017(\*), 2019 (\*)          |

\* Experimental

**Note**: MySQL 5.x versions are unable to or have limitations with
running multiple schedulers -- please see the [Scheduler docs](https://airflow.apache.org/docs/apache-airflow/stable/scheduler.html).
MariaDB is not tested/recommended.

**Note**: SQLite is used in Airflow tests. Do not use it in production. We recommend
using the latest stable version of SQLite for local development.

**Note**: Airflow currently can be run on POSIX-compliant Operating Systems. For development it is regularly
tested on fairly modern Linux Distros and recent versions of MacOS.
On Windows you can run it via WSL2 (Windows Subsystem for Linux 2) or via Linux Containers.
The work to add Windows support is tracked via [#10388](https://github.com/apache/airflow/issues/10388) but
it is not a high priority. You should only use Linux-based distros as "Production" execution environment
as this is the only environment that is supported. The only distro that is used in our CI tests and that
is used in the [Community managed DockerHub image](https://hub.docker.com/p/apache/airflow) is
`Debian Bullseye`.

## Getting started

Visit the official Airflow website documentation (latest **stable** release) for help with
[installing Airflow](https://airflow.apache.org/docs/apache-airflow/stable/installation.html),
[getting started](https://airflow.apache.org/docs/apache-airflow/stable/start.html), or walking
through a more complete [tutorial](https://airflow.apache.org/docs/apache-airflow/stable/tutorial.html).

> Note: If you're looking for documentation for the main branch (latest development branch): you can find it on [s.apache.org/airflow-docs](https://s.apache.org/airflow-docs/).

For more information on Airflow Improvement Proposals (AIPs), visit
the [Airflow Wiki](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals).

Documentation for dependent projects like provider packages, Docker image, Helm Chart, you'll find it in [the documentation index](https://airflow.apache.org/docs/).

## Installing from PyPI

We publish Apache Airflow as `apache-airflow` package in PyPI. Installing it however might be sometimes tricky
because Airflow is a bit of both a library and application. Libraries usually keep their dependencies open, and
applications usually pin them, but we should do neither and both simultaneously. We decided to keep
our dependencies as open as possible (in `setup.py`) so users can install different versions of libraries
if needed. This means that `pip install apache-airflow` will not work from time to time or will
produce unusable Airflow installation.

To have repeatable installation, however, we keep a set of "known-to-be-working" constraint
files in the orphan `constraints-main` and `constraints-2-0` branches. We keep those "known-to-be-working"
constraints files separately per major/minor Python version.
You can use them as constraint files when installing Airflow from PyPI. Note that you have to specify
correct Airflow tag/version/branch and Python versions in the URL.


1. Installing just Airflow:

> Note: Only `pip` installation is currently officially supported.

While it is possible to install Airflow with tools like [Poetry](https://python-poetry.org) or
[pip-tools](https://pypi.org/project/pip-tools), they do not share the same workflow as
`pip` - especially when it comes to constraint vs. requirements management.
Installing via `Poetry` or `pip-tools` is not currently supported.

If you wish to install Airflow using those tools, you should use the constraint files and convert
them to the appropriate format and workflow that your tool requires.


```bash
pip install 'apache-airflow==2.5.3' \
 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.7.txt"
```

2. Installing with extras (i.e., postgres, google)

```bash
pip install 'apache-airflow[postgres,google]==2.5.3' \
 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.7.txt"
```

For information on installing provider packages, check
[providers](http://airflow.apache.org/docs/apache-airflow-providers/index.html).

## Official source code

Apache Airflow is an [Apache Software Foundation](https://www.apache.org) (ASF) project,
and our official source code releases:

- Follow the [ASF Release Policy](https://www.apache.org/legal/release-policy.html)
- Can be downloaded from [the ASF Distribution Directory](https://downloads.apache.org/airflow)
- Are cryptographically signed by the release manager
- Are officially voted on by the PMC members during the
  [Release Approval Process](https://www.apache.org/legal/release-policy.html#release-approval)

Following the ASF rules, the source packages released must be sufficient for a user to build and test the
release provided they have access to the appropriate platform and tools.

## Convenience packages

There are other ways of installing and using Airflow. Those are "convenience" methods - they are
not "official releases" as stated by the `ASF Release Policy`, but they can be used by the users
who do not want to build the software themselves.

Those are - in the order of most common ways people install Airflow:

- [PyPI releases](https://pypi.org/project/apache-airflow/) to install Airflow using standard `pip` tool
- [Docker Images](https://hub.docker.com/r/apache/airflow) to install airflow via
  `docker` tool, use them in Kubernetes, Helm Charts, `docker-compose`, `docker swarm`, etc. You can
  read more about using, customising, and extending the images in the
  [Latest docs](https://airflow.apache.org/docs/docker-stack/index.html), and
  learn details on the internals in the [IMAGES.rst](https://github.com/apache/airflow/blob/main/IMAGES.rst) document.
- [Tags in GitHub](https://github.com/apache/airflow/tags) to retrieve the git project sources that
  were used to generate official source packages via git

All those artifacts are not official releases, but they are prepared using officially released sources.
Some of those artifacts are "development" or "pre-release" ones, and they are clearly marked as such
following the ASF Policy.

## User Interface

- **DAGs**: Overview of all DAGs in your environment.

  ![DAGs](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/dags.png)

- **Grid**: Grid representation of a DAG that spans across time.

  ![Grid](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/grid.png)

- **Graph**: Visualization of a DAG's dependencies and their current status for a specific run.

  ![Graph](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/graph.png)

- **Task Duration**: Total time spent on different tasks over time.

  ![Task Duration](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/duration.png)

- **Gantt**: Duration and overlap of a DAG.

  ![Gantt](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/gantt.png)

- **Code**: Quick way to view source code of a DAG.

  ![Code](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/code.png)

## Semantic versioning

As of Airflow 2.0.0, we support a strict [SemVer](https://semver.org/) approach for all packages released.

There are few specific rules that we agreed to that define details of versioning of the different
packages:

* **Airflow**: SemVer rules apply to core airflow only (excludes any changes to providers).
  Changing limits for versions of Airflow dependencies is not a breaking change on its own.
* **Airflow Providers**: SemVer rules apply to changes in the particular provider's code only.
  SemVer MAJOR and MINOR versions for the packages are independent of the Airflow version.
  For example, `google 4.1.0` and `amazon 3.0.3` providers can happily be installed
  with `Airflow 2.1.2`. If there are limits of cross-dependencies between providers and Airflow packages,
  they are present in providers as `install_requires` limitations. We aim to keep backwards
  compatibility of providers with all previously released Airflow 2 versions but
  there will sometimes be breaking changes that might make some, or all
  providers, have minimum Airflow version specified. Change of that minimum supported Airflow version
  is a breaking change for provider because installing the new provider might automatically
  upgrade Airflow (which might be an undesired side effect of upgrading provider).
* **Airflow Helm Chart**: SemVer rules apply to changes in the chart only. SemVer MAJOR and MINOR
  versions for the chart are independent from the Airflow version. We aim to keep backwards
  compatibility of the Helm Chart with all released Airflow 2 versions, but some new features might
  only work starting from specific Airflow releases. We might however limit the Helm
  Chart to depend on minimal Airflow version.
* **Airflow API clients**: SemVer MAJOR and MINOR versions follow MAJOR and MINOR versions of Airflow.
  The first MAJOR or MINOR X.Y.0 release of Airflow should always be followed by X.Y.0 release of
  all clients. An airflow PATCH X.Y.Z release can be followed by a PATCH release of API clients, only
  if this PATCH is relevant to the clients.
  The clients then can release their own PATCH releases with bugfixes, independently of Airflow PATCH releases.
  As a consequence, each API client will have its own PATCH version that may or may not be in sync with the Airflow
  PATCH version. For a specific MAJOR/MINOR Airflow version, users should favor the latest PATCH version of clients
  independently of their Airflow PATCH version.

## Version Life Cycle

Apache Airflow version life cycle:

<!-- This table is automatically updated by pre-commit scripts/ci/pre_commit/pre_commit_supported_versions.py -->
<!-- Beginning of auto-generated table -->

| Version   | Current Patch/Minor   | State     | First Release   | Limited Support   | EOL/Terminated   |
|-----------|-----------------------|-----------|-----------------|-------------------|------------------|
| 2         | 2.5.3                 | Supported | Dec 17, 2020    | TBD               | TBD              |
| 1.10      | 1.10.15               | EOL       | Aug 27, 2018    | Dec 17, 2020      | June 17, 2021    |
| 1.9       | 1.9.0                 | EOL       | Jan 03, 2018    | Aug 27, 2018      | Aug 27, 2018     |
| 1.8       | 1.8.2                 | EOL       | Mar 19, 2017    | Jan 03, 2018      | Jan 03, 2018     |
| 1.7       | 1.7.1.2               | EOL       | Mar 28, 2016    | Mar 19, 2017      | Mar 19, 2017     |

<!-- End of auto-generated table -->

Limited support versions will be supported with security and critical bug fix only.
EOL versions will not get any fixes nor support.
We always recommend that all users run the latest available minor release for whatever major version is in use.
We **highly** recommend upgrading to the latest Airflow major release at the earliest convenient time and before the EOL date.

## Support for Python and Kubernetes versions

As of Airflow 2.0, we agreed to certain rules we follow for Python and Kubernetes support.
They are based on the official release schedule of Python and Kubernetes, nicely summarized in the
[Python Developer's Guide](https://devguide.python.org/#status-of-python-branches) and
[Kubernetes version skew policy](https://kubernetes.io/docs/setup/release/version-skew-policy/).

1. We drop support for Python and Kubernetes versions when they reach EOL. Except for Kubernetes, a
   version stays supported by Airflow if two major cloud providers still provide support for it. We drop
   support for those EOL versions in main right after EOL date, and it is effectively removed when we release
   the first new MINOR (Or MAJOR if there is no new MINOR version) of Airflow. For example, for Python 3.7 it
   means that we will drop support in main right after 27.06.2023, and the first MAJOR or MINOR version of
   Airflow released after will not have it.

2. The "oldest" supported version of Python/Kubernetes is the default one until we decide to switch to
   later version. "Default" is only meaningful in terms of "smoke tests" in CI PRs, which are run using this
   default version and the default reference image available. Currently `apache/airflow:latest`
   and `apache/airflow:2.5.3` images are Python 3.7 images. This means that default reference image will
   become the default at the time when we start preparing for dropping 3.7 support which is few months
   before the end of life for Python 3.7.

3. We support a new version of Python/Kubernetes in main after they are officially released, as soon as we
   make them work in our CI pipeline (which might not be immediate due to dependencies catching up with
   new versions of Python mostly) we release new images/support in Airflow based on the working CI setup.

## Base OS support for reference Airflow images

The Airflow Community provides conveniently packaged container images that are published whenever
we publish an Apache Airflow release. Those images contain:

* Base OS with necessary packages to install Airflow (stable Debian OS)
* Base Python installation in versions supported at the time of release for the MINOR version of
  Airflow released (so there could be different versions for 2.3 and 2.2 line for example)
* Libraries required to connect to suppoerted Databases (again the set of databases supported depends
  on the MINOR version of Airflow.
* Predefined set of popular providers (for details see the [Dockerfile](https://raw.githubusercontent.com/apache/airflow/main/Dockerfile)).
* Possibility of building your own, custom image where the user can choose their own set of providers
  and libraries (see [Building the image](https://airflow.apache.org/docs/docker-stack/build.html))
* In the future Airflow might also support a "slim" version without providers nor database clients installed

The version of the base OS image is the stable version of Debian. Airflow supports using all currently active
stable versions - as soon as all Airflow dependencies support building, and we set up the CI pipeline for
building and testing the OS version. Approximately 6 months before the end-of-life of a previous stable
version of the OS, Airflow switches the images released to use the latest supported version of the OS.
For example since ``Debian Buster`` end-of-life was August 2022, Airflow switched the images in `main` branch
to use ``Debian Bullseye`` in February/March 2022. The version was used in the next MINOR release after
the switch happened. In case of the Bullseye switch - 2.3.0 version used ``Debian Bullseye``.
The images released  in the previous MINOR version continue to use the version that all other releases
for the MINOR version used.

Support for ``Debian Buster`` image was dropped in August 2022 completely and everyone is expected to
stop building their images using ``Debian Buster``.

Users will continue to be able to build their images using stable Debian releases until the end of life and
building and verifying of the images happens in our CI but no unit tests were executed using this image in
the `main` branch.

## Approach to dependencies of Airflow

Airflow has a lot of dependencies - direct and transitive, also Airflow is both - library and application,
therefore our policies to dependencies has to include both - stability of installation of application,
but also ability to install newer version of dependencies for those users who develop DAGs. We developed
the approach where `constraints` are used to make sure airflow can be installed in a repeatable way, while
we do not limit our users to upgrade most of the dependencies. As a result we decided not to upper-bound
version of Airflow dependencies by default, unless we have good reasons to believe upper-bounding them is
needed because of importance of the dependency as well as risk it involves to upgrade specific dependency.
We also upper-bound the dependencies that we know cause problems.

The constraint mechanism of ours takes care about finding and upgrading all the non-upper bound dependencies
automatically (providing that all the tests pass). Our `main` build failures will indicate in case there
are versions of dependencies that break our tests - indicating that we should either upper-bind them or
that we should fix our code/tests to account for the upstream changes from those dependencies.

Whenever we upper-bound such a dependency, we should always comment why we are doing it - i.e. we should have
a good reason why dependency is upper-bound. And we should also mention what is the condition to remove the
binding.

### Approach for dependencies for Airflow Core

Those `extras` and `providers` dependencies are maintained in `setup.cfg`.

There are few dependencies that we decided are important enough to upper-bound them by default, as they are
known to follow predictable versioning scheme, and we know that new versions of those are very likely to
bring breaking changes. We commit to regularly review and attempt to upgrade to the newer versions of
the dependencies as they are released, but this is manual process.

The important dependencies are:

* `SQLAlchemy`: upper-bound to specific MINOR version (SQLAlchemy is known to remove deprecations and
   introduce breaking changes especially that support for different Databases varies and changes at
   various speed (example: SQLAlchemy 1.4 broke MSSQL integration for Airflow)
* `Alembic`: it is important to handle our migrations in predictable and performant way. It is developed
   together with SQLAlchemy. Our experience with Alembic is that it very stable in MINOR version
* `Flask`: We are using Flask as the back-bone of our web UI and API. We know major version of Flask
   are very likely to introduce breaking changes across those so limiting it to MAJOR version makes sense
* `werkzeug`: the library is known to cause problems in new versions. It is tightly coupled with Flask
   libraries, and we should update them together
* `celery`: Celery is crucial component of Airflow as it used for CeleryExecutor (and similar). Celery
   [follows SemVer](https://docs.celeryq.dev/en/stable/contributing.html?highlight=semver#versions), so
   we should upper-bound it to the next MAJOR version. Also when we bump the upper version of the library,
   we should make sure Celery Provider minimum Airflow version is updated).
* `kubernetes`: Kubernetes is a crucial component of Airflow as it is used for the KubernetesExecutor
   (and similar). Kubernetes Python library [follows SemVer](https://github.com/kubernetes-client/python#compatibility),
   so we should upper-bound it to the next MAJOR version. Also when we bump the upper version of the library,
   we should make sure Kubernetes Provider minimum Airflow version is updated.

### Approach for dependencies in Airflow Providers and extras

Those `extras` and `providers` dependencies are maintained in `provider.yaml` of each provider.

By default, we should not upper-bound dependencies for providers, however each provider's maintainer
might decide to add additional limits (and justify them with comment)

## Release process for Providers

Providers released by the community (with roughly monthly cadence) have
limitation of a minimum supported version of Airflow. The minimum version of
Airflow is the `MINOR` version (2.2, 2.3 etc.) indicating that the providers
might use features that appeared in this release. The default support timespan
for the minimum version of Airflow (there could be justified exceptions) is
that we increase the minimum Airflow version, when 12 months passed since the
first release for the MINOR version of Airflow.

For example this means that by default we upgrade the minimum version of Airflow supported by providers
to 2.4.0 in the first Provider's release after 30th of April 2023. The 30th of April 2022 is the date when the
first `PATCHLEVEL` of 2.3 (2.3.0) has been released.

When we increase the minimum Airflow version, this is not a reason to bump `MAJOR` version of the providers
(unless there are other breaking changes in the provider). The reason for that is that people who use
older version of Airflow will not be able to use that provider (so it is not a breaking change for them)
and for people who are using supported version of Airflow this is not a breaking change on its own - they
will be able to use the new version without breaking their workflows. When we upgraded min-version to
2.2+, our approach was different but as of 2.3+ upgrade (November 2022) we only bump `MINOR` version of the
provider when we increase minimum Airflow version.

Providers are often connected with some stakeholders that are vitally interested in maintaining backwards
compatibilities in their integrations (for example cloud providers, or specific service providers). But,
we are also bound with the [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
which describes who releases, and how to release the ASF software. The provider's governance model is something we name
"mixed governance" - where we follow the release policies, while the burden of maintaining and testing
the cherry-picked versions is on those who commit to perform the cherry-picks and make PRs to older
branches.

The "mixed governance" (optional, per-provider) means that:

* The Airflow Community and release manager decide when to release those providers.
  This is fully managed by the community and the usual release-management process following the
  [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
* The contributors (who might or might not be direct stakeholders in the provider) will carry the burden
  of cherry-picking and testing the older versions of providers.
* There is no "selection" and acceptance process to determine which version of the provider is released.
  It is determined by the actions of contributors raising the PR with cherry-picked changes and it follows
  the usual PR review process where maintainer approves (or not) and merges (or not) such PR. Simply
  speaking - the completed action of cherry-picking and testing the older version of the provider make
  it eligible to be released. Unless there is someone who volunteers and perform the cherry-picking and
  testing, the provider is not released.
* Branches to raise PR against are created when a contributor commits to perform the cherry-picking
  (as a comment in PR to cherry-pick for example)

Usually, community effort is focused on the most recent version of each provider. The community approach is
that we should rather aggressively remove deprecations in "major" versions of the providers - whenever
there is an opportunity to increase major version of a provider, we attempt to remove all deprecations.
However, sometimes there is a contributor (who might or might not represent stakeholder),
willing to make their effort on cherry-picking and testing the non-breaking changes to a selected,
previous major branch of the provider. This results in releasing at most two versions of a
provider at a time:

* potentially breaking "latest" major version
* selected past major version with non-breaking changes applied by the contributor

Cherry-picking such changes follows the same process for releasing Airflow
patch-level releases for a previous minor Airflow version. Usually such cherry-picking is done when
there is an important bugfix and the latest version contains breaking changes that are not
coupled with the bugfix. Releasing them together in the latest version of the provider effectively couples
them, and therefore they're released separately. The cherry-picked changes have to be merged by the committer following the usual rules of the
community.

There is no obligation to cherry-pick and release older versions of the providers.
The community continues to release such older versions of the providers for as long as there is an effort
of the contributors to perform the cherry-picks and carry-on testing of the older provider version.

The availability of stakeholder that can manage "service-oriented" maintenance and agrees to such a
responsibility, will also drive our willingness to accept future, new providers to become community managed.

## Contributing

Want to help build Apache Airflow? Check out our [contributing documentation](https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst).

Official Docker (container) images for Apache Airflow are described in [IMAGES.rst](https://github.com/apache/airflow/blob/main/IMAGES.rst).

## Who uses Apache Airflow?

More than 400 organizations are using Apache Airflow
[in the wild](https://github.com/apache/airflow/blob/main/INTHEWILD.md).

## Who Maintains Apache Airflow?

Airflow is the work of the [community](https://github.com/apache/airflow/graphs/contributors),
but the [core committers/maintainers](https://people.apache.org/committers-by-project.html#airflow)
are responsible for reviewing and merging PRs as well as steering conversations around new feature requests.
If you would like to become a maintainer, please review the Apache Airflow
[committer requirements](https://github.com/apache/airflow/blob/main/COMMITTERS.rst#guidelines-to-become-an-airflow-committer).

## Can I use the Apache Airflow logo in my presentation?

Yes! Be sure to abide by the Apache Foundation [trademark policies](https://www.apache.org/foundation/marks/#books) and the Apache Airflow [Brandbook](https://cwiki.apache.org/confluence/display/AIRFLOW/Brandbook). The most up to date logos are found in [this repo](/docs/apache-airflow/img/logos) and on the Apache Software Foundation [website](https://www.apache.org/logos/about.html).

## Airflow merchandise

If you would love to have Apache Airflow stickers, t-shirt, etc. then check out
[Redbubble Shop](https://www.redbubble.com/i/sticker/Apache-Airflow-by-comdev/40497530.EJUG5).

## Links

- [Documentation](https://airflow.apache.org/docs/apache-airflow/stable/)
- [Chat](https://s.apache.org/airflow-slack)

## Sponsors

The CI infrastructure for Apache Airflow has been sponsored by:

<!-- Ordered by most recently "funded" -->

<a href="https://astronomer.io"><img src="https://assets2.astronomer.io/logos/logoForLIGHTbackground.png" alt="astronomer.io" width="250px"></a>
<a href="https://aws.amazon.com/opensource/"><img src="docs/integration-logos/aws/AWS-Cloud-alt_light-bg@4x.png" alt="AWS OpenSource" width="130px"></a>


%package -n python3-apache-airflow
Summary:	Programmatically author, schedule and monitor data pipelines
Provides:	python-apache-airflow
BuildRequires:	python3-devel
BuildRequires:	python3-setuptools
BuildRequires:	python3-pip
%description -n python3-apache-airflow
<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-->

# Apache Airflow

[![PyPI version](https://badge.fury.io/py/apache-airflow.svg)](https://badge.fury.io/py/apache-airflow)
[![GitHub Build](https://github.com/apache/airflow/workflows/CI%20Build/badge.svg)](https://github.com/apache/airflow/actions)
[![Coverage Status](https://img.shields.io/codecov/c/github/apache/airflow/main.svg)](https://codecov.io/github/apache/airflow?branch=main)
[![License](https://img.shields.io/:license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/apache-airflow.svg)](https://pypi.org/project/apache-airflow/)
[![Docker Pulls](https://img.shields.io/docker/pulls/apache/airflow.svg)](https://hub.docker.com/r/apache/airflow)
[![Docker Stars](https://img.shields.io/docker/stars/apache/airflow.svg)](https://hub.docker.com/r/apache/airflow)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/apache-airflow)](https://pypi.org/project/apache-airflow/)
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/apache-airflow)](https://artifacthub.io/packages/search?repo=apache-airflow)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Twitter Follow](https://img.shields.io/twitter/follow/ApacheAirflow.svg?style=social&label=Follow)](https://twitter.com/ApacheAirflow)
[![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://s.apache.org/airflow-slack)
[![Contributors](https://img.shields.io/github/contributors/apache/airflow)](https://github.com/apache/airflow/graphs/contributors)

[Apache Airflow](https://airflow.apache.org/docs/apache-airflow/stable/) (or simply Airflow) is a platform to programmatically author, schedule, and monitor workflows.

When workflows are defined as code, they become more maintainable, versionable, testable, and collaborative.

Use Airflow to author workflows as directed acyclic graphs (DAGs) of tasks. The Airflow scheduler executes your tasks on an array of workers while following the specified dependencies. Rich command line utilities make performing complex surgeries on DAGs a snap. The rich user interface makes it easy to visualize pipelines running in production, monitor progress, and troubleshoot issues when needed.

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of contents**

- [Project Focus](#project-focus)
- [Principles](#principles)
- [Requirements](#requirements)
- [Getting started](#getting-started)
- [Installing from PyPI](#installing-from-pypi)
- [Official source code](#official-source-code)
- [Convenience packages](#convenience-packages)
- [User Interface](#user-interface)
- [Semantic versioning](#semantic-versioning)
- [Version Life Cycle](#version-life-cycle)
- [Support for Python and Kubernetes versions](#support-for-python-and-kubernetes-versions)
- [Base OS support for reference Airflow images](#base-os-support-for-reference-airflow-images)
- [Approach to dependencies of Airflow](#approach-to-dependencies-of-airflow)
- [Release process for Providers](#release-process-for-providers)
- [Contributing](#contributing)
- [Who uses Apache Airflow?](#who-uses-apache-airflow)
- [Who Maintains Apache Airflow?](#who-maintains-apache-airflow)
- [Can I use the Apache Airflow logo in my presentation?](#can-i-use-the-apache-airflow-logo-in-my-presentation)
- [Airflow merchandise](#airflow-merchandise)
- [Links](#links)
- [Sponsors](#sponsors)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## Project Focus

Airflow works best with workflows that are mostly static and slowly changing. When the DAG structure is similar from one run to the next, it clarifies the unit of work and continuity. Other similar projects include [Luigi](https://github.com/spotify/luigi), [Oozie](https://oozie.apache.org/) and [Azkaban](https://azkaban.github.io/).

Airflow is commonly used to process data, but has the opinion that tasks should ideally be idempotent (i.e., results of the task will be the same, and will not create duplicated data in a destination system), and should not pass large quantities of data from one task to the next (though tasks can pass metadata using Airflow's [XCom feature](https://airflow.apache.org/docs/apache-airflow/stable/concepts/xcoms.html)). For high-volume, data-intensive tasks, a best practice is to delegate to external services specializing in that type of work.

Airflow is not a streaming solution, but it is often used to process real-time data, pulling data off streams in batches.

## Principles

- **Dynamic**: Airflow pipelines are configuration as code (Python), allowing for dynamic pipeline generation. This allows for writing code that instantiates pipelines dynamically.
- **Extensible**: Easily define your own operators, executors and extend the library so that it fits the level of abstraction that suits your environment.
- **Elegant**: Airflow pipelines are lean and explicit. Parameterizing your scripts is built into the core of Airflow using the powerful **Jinja** templating engine.
- **Scalable**: Airflow has a modular architecture and uses a message queue to orchestrate an arbitrary number of workers.

## Requirements

Apache Airflow is tested with:

|                     | Main version (dev)           | Stable version (2.5.3)       |
|---------------------|------------------------------|------------------------------|
| Python              | 3.7, 3.8, 3.9, 3.10          | 3.7, 3.8, 3.9, 3.10          |
| Platform            | AMD64/ARM64(\*)              | AMD64/ARM64(\*)              |
| Kubernetes          | 1.21, 1.22, 1.23, 1.24, 1.25 | 1.21, 1.22, 1.23, 1.24, 1.25 |
| PostgreSQL          | 11, 12, 13, 14, 15           | 11, 12, 13, 14, 15           |
| MySQL               | 5.7, 8                       | 5.7, 8                       |
| SQLite              | 3.15.0+                      | 3.15.0+                      |
| MSSQL               | 2017(\*), 2019 (\*)          | 2017(\*), 2019 (\*)          |

\* Experimental

**Note**: MySQL 5.x versions are unable to or have limitations with
running multiple schedulers -- please see the [Scheduler docs](https://airflow.apache.org/docs/apache-airflow/stable/scheduler.html).
MariaDB is not tested/recommended.

**Note**: SQLite is used in Airflow tests. Do not use it in production. We recommend
using the latest stable version of SQLite for local development.

**Note**: Airflow currently can be run on POSIX-compliant Operating Systems. For development it is regularly
tested on fairly modern Linux Distros and recent versions of MacOS.
On Windows you can run it via WSL2 (Windows Subsystem for Linux 2) or via Linux Containers.
The work to add Windows support is tracked via [#10388](https://github.com/apache/airflow/issues/10388) but
it is not a high priority. You should only use Linux-based distros as "Production" execution environment
as this is the only environment that is supported. The only distro that is used in our CI tests and that
is used in the [Community managed DockerHub image](https://hub.docker.com/p/apache/airflow) is
`Debian Bullseye`.

## Getting started

Visit the official Airflow website documentation (latest **stable** release) for help with
[installing Airflow](https://airflow.apache.org/docs/apache-airflow/stable/installation.html),
[getting started](https://airflow.apache.org/docs/apache-airflow/stable/start.html), or walking
through a more complete [tutorial](https://airflow.apache.org/docs/apache-airflow/stable/tutorial.html).

> Note: If you're looking for documentation for the main branch (latest development branch): you can find it on [s.apache.org/airflow-docs](https://s.apache.org/airflow-docs/).

For more information on Airflow Improvement Proposals (AIPs), visit
the [Airflow Wiki](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals).

Documentation for dependent projects like provider packages, Docker image, Helm Chart, you'll find it in [the documentation index](https://airflow.apache.org/docs/).

## Installing from PyPI

We publish Apache Airflow as `apache-airflow` package in PyPI. Installing it however might be sometimes tricky
because Airflow is a bit of both a library and application. Libraries usually keep their dependencies open, and
applications usually pin them, but we should do neither and both simultaneously. We decided to keep
our dependencies as open as possible (in `setup.py`) so users can install different versions of libraries
if needed. This means that `pip install apache-airflow` will not work from time to time or will
produce unusable Airflow installation.

To have repeatable installation, however, we keep a set of "known-to-be-working" constraint
files in the orphan `constraints-main` and `constraints-2-0` branches. We keep those "known-to-be-working"
constraints files separately per major/minor Python version.
You can use them as constraint files when installing Airflow from PyPI. Note that you have to specify
correct Airflow tag/version/branch and Python versions in the URL.


1. Installing just Airflow:

> Note: Only `pip` installation is currently officially supported.

While it is possible to install Airflow with tools like [Poetry](https://python-poetry.org) or
[pip-tools](https://pypi.org/project/pip-tools), they do not share the same workflow as
`pip` - especially when it comes to constraint vs. requirements management.
Installing via `Poetry` or `pip-tools` is not currently supported.

If you wish to install Airflow using those tools, you should use the constraint files and convert
them to the appropriate format and workflow that your tool requires.


```bash
pip install 'apache-airflow==2.5.3' \
 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.7.txt"
```

2. Installing with extras (i.e., postgres, google)

```bash
pip install 'apache-airflow[postgres,google]==2.5.3' \
 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.7.txt"
```

For information on installing provider packages, check
[providers](http://airflow.apache.org/docs/apache-airflow-providers/index.html).

## Official source code

Apache Airflow is an [Apache Software Foundation](https://www.apache.org) (ASF) project,
and our official source code releases:

- Follow the [ASF Release Policy](https://www.apache.org/legal/release-policy.html)
- Can be downloaded from [the ASF Distribution Directory](https://downloads.apache.org/airflow)
- Are cryptographically signed by the release manager
- Are officially voted on by the PMC members during the
  [Release Approval Process](https://www.apache.org/legal/release-policy.html#release-approval)

Following the ASF rules, the source packages released must be sufficient for a user to build and test the
release provided they have access to the appropriate platform and tools.

## Convenience packages

There are other ways of installing and using Airflow. Those are "convenience" methods - they are
not "official releases" as stated by the `ASF Release Policy`, but they can be used by the users
who do not want to build the software themselves.

Those are - in the order of most common ways people install Airflow:

- [PyPI releases](https://pypi.org/project/apache-airflow/) to install Airflow using standard `pip` tool
- [Docker Images](https://hub.docker.com/r/apache/airflow) to install airflow via
  `docker` tool, use them in Kubernetes, Helm Charts, `docker-compose`, `docker swarm`, etc. You can
  read more about using, customising, and extending the images in the
  [Latest docs](https://airflow.apache.org/docs/docker-stack/index.html), and
  learn details on the internals in the [IMAGES.rst](https://github.com/apache/airflow/blob/main/IMAGES.rst) document.
- [Tags in GitHub](https://github.com/apache/airflow/tags) to retrieve the git project sources that
  were used to generate official source packages via git

All those artifacts are not official releases, but they are prepared using officially released sources.
Some of those artifacts are "development" or "pre-release" ones, and they are clearly marked as such
following the ASF Policy.

## User Interface

- **DAGs**: Overview of all DAGs in your environment.

  ![DAGs](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/dags.png)

- **Grid**: Grid representation of a DAG that spans across time.

  ![Grid](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/grid.png)

- **Graph**: Visualization of a DAG's dependencies and their current status for a specific run.

  ![Graph](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/graph.png)

- **Task Duration**: Total time spent on different tasks over time.

  ![Task Duration](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/duration.png)

- **Gantt**: Duration and overlap of a DAG.

  ![Gantt](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/gantt.png)

- **Code**: Quick way to view source code of a DAG.

  ![Code](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/code.png)

## Semantic versioning

As of Airflow 2.0.0, we support a strict [SemVer](https://semver.org/) approach for all packages released.

There are few specific rules that we agreed to that define details of versioning of the different
packages:

* **Airflow**: SemVer rules apply to core airflow only (excludes any changes to providers).
  Changing limits for versions of Airflow dependencies is not a breaking change on its own.
* **Airflow Providers**: SemVer rules apply to changes in the particular provider's code only.
  SemVer MAJOR and MINOR versions for the packages are independent of the Airflow version.
  For example, `google 4.1.0` and `amazon 3.0.3` providers can happily be installed
  with `Airflow 2.1.2`. If there are limits of cross-dependencies between providers and Airflow packages,
  they are present in providers as `install_requires` limitations. We aim to keep backwards
  compatibility of providers with all previously released Airflow 2 versions but
  there will sometimes be breaking changes that might make some, or all
  providers, have minimum Airflow version specified. Change of that minimum supported Airflow version
  is a breaking change for provider because installing the new provider might automatically
  upgrade Airflow (which might be an undesired side effect of upgrading provider).
* **Airflow Helm Chart**: SemVer rules apply to changes in the chart only. SemVer MAJOR and MINOR
  versions for the chart are independent from the Airflow version. We aim to keep backwards
  compatibility of the Helm Chart with all released Airflow 2 versions, but some new features might
  only work starting from specific Airflow releases. We might however limit the Helm
  Chart to depend on minimal Airflow version.
* **Airflow API clients**: SemVer MAJOR and MINOR versions follow MAJOR and MINOR versions of Airflow.
  The first MAJOR or MINOR X.Y.0 release of Airflow should always be followed by X.Y.0 release of
  all clients. An airflow PATCH X.Y.Z release can be followed by a PATCH release of API clients, only
  if this PATCH is relevant to the clients.
  The clients then can release their own PATCH releases with bugfixes, independently of Airflow PATCH releases.
  As a consequence, each API client will have its own PATCH version that may or may not be in sync with the Airflow
  PATCH version. For a specific MAJOR/MINOR Airflow version, users should favor the latest PATCH version of clients
  independently of their Airflow PATCH version.

## Version Life Cycle

Apache Airflow version life cycle:

<!-- This table is automatically updated by pre-commit scripts/ci/pre_commit/pre_commit_supported_versions.py -->
<!-- Beginning of auto-generated table -->

| Version   | Current Patch/Minor   | State     | First Release   | Limited Support   | EOL/Terminated   |
|-----------|-----------------------|-----------|-----------------|-------------------|------------------|
| 2         | 2.5.3                 | Supported | Dec 17, 2020    | TBD               | TBD              |
| 1.10      | 1.10.15               | EOL       | Aug 27, 2018    | Dec 17, 2020      | June 17, 2021    |
| 1.9       | 1.9.0                 | EOL       | Jan 03, 2018    | Aug 27, 2018      | Aug 27, 2018     |
| 1.8       | 1.8.2                 | EOL       | Mar 19, 2017    | Jan 03, 2018      | Jan 03, 2018     |
| 1.7       | 1.7.1.2               | EOL       | Mar 28, 2016    | Mar 19, 2017      | Mar 19, 2017     |

<!-- End of auto-generated table -->

Limited support versions will be supported with security and critical bug fix only.
EOL versions will not get any fixes nor support.
We always recommend that all users run the latest available minor release for whatever major version is in use.
We **highly** recommend upgrading to the latest Airflow major release at the earliest convenient time and before the EOL date.

## Support for Python and Kubernetes versions

As of Airflow 2.0, we agreed to certain rules we follow for Python and Kubernetes support.
They are based on the official release schedule of Python and Kubernetes, nicely summarized in the
[Python Developer's Guide](https://devguide.python.org/#status-of-python-branches) and
[Kubernetes version skew policy](https://kubernetes.io/docs/setup/release/version-skew-policy/).

1. We drop support for Python and Kubernetes versions when they reach EOL. Except for Kubernetes, a
   version stays supported by Airflow if two major cloud providers still provide support for it. We drop
   support for those EOL versions in main right after EOL date, and it is effectively removed when we release
   the first new MINOR (Or MAJOR if there is no new MINOR version) of Airflow. For example, for Python 3.7 it
   means that we will drop support in main right after 27.06.2023, and the first MAJOR or MINOR version of
   Airflow released after will not have it.

2. The "oldest" supported version of Python/Kubernetes is the default one until we decide to switch to
   later version. "Default" is only meaningful in terms of "smoke tests" in CI PRs, which are run using this
   default version and the default reference image available. Currently `apache/airflow:latest`
   and `apache/airflow:2.5.3` images are Python 3.7 images. This means that default reference image will
   become the default at the time when we start preparing for dropping 3.7 support which is few months
   before the end of life for Python 3.7.

3. We support a new version of Python/Kubernetes in main after they are officially released, as soon as we
   make them work in our CI pipeline (which might not be immediate due to dependencies catching up with
   new versions of Python mostly) we release new images/support in Airflow based on the working CI setup.

## Base OS support for reference Airflow images

The Airflow Community provides conveniently packaged container images that are published whenever
we publish an Apache Airflow release. Those images contain:

* Base OS with necessary packages to install Airflow (stable Debian OS)
* Base Python installation in versions supported at the time of release for the MINOR version of
  Airflow released (so there could be different versions for 2.3 and 2.2 line for example)
* Libraries required to connect to suppoerted Databases (again the set of databases supported depends
  on the MINOR version of Airflow.
* Predefined set of popular providers (for details see the [Dockerfile](https://raw.githubusercontent.com/apache/airflow/main/Dockerfile)).
* Possibility of building your own, custom image where the user can choose their own set of providers
  and libraries (see [Building the image](https://airflow.apache.org/docs/docker-stack/build.html))
* In the future Airflow might also support a "slim" version without providers nor database clients installed

The version of the base OS image is the stable version of Debian. Airflow supports using all currently active
stable versions - as soon as all Airflow dependencies support building, and we set up the CI pipeline for
building and testing the OS version. Approximately 6 months before the end-of-life of a previous stable
version of the OS, Airflow switches the images released to use the latest supported version of the OS.
For example since ``Debian Buster`` end-of-life was August 2022, Airflow switched the images in `main` branch
to use ``Debian Bullseye`` in February/March 2022. The version was used in the next MINOR release after
the switch happened. In case of the Bullseye switch - 2.3.0 version used ``Debian Bullseye``.
The images released  in the previous MINOR version continue to use the version that all other releases
for the MINOR version used.

Support for ``Debian Buster`` image was dropped in August 2022 completely and everyone is expected to
stop building their images using ``Debian Buster``.

Users will continue to be able to build their images using stable Debian releases until the end of life and
building and verifying of the images happens in our CI but no unit tests were executed using this image in
the `main` branch.

## Approach to dependencies of Airflow

Airflow has a lot of dependencies - direct and transitive, also Airflow is both - library and application,
therefore our policies to dependencies has to include both - stability of installation of application,
but also ability to install newer version of dependencies for those users who develop DAGs. We developed
the approach where `constraints` are used to make sure airflow can be installed in a repeatable way, while
we do not limit our users to upgrade most of the dependencies. As a result we decided not to upper-bound
version of Airflow dependencies by default, unless we have good reasons to believe upper-bounding them is
needed because of importance of the dependency as well as risk it involves to upgrade specific dependency.
We also upper-bound the dependencies that we know cause problems.

The constraint mechanism of ours takes care about finding and upgrading all the non-upper bound dependencies
automatically (providing that all the tests pass). Our `main` build failures will indicate in case there
are versions of dependencies that break our tests - indicating that we should either upper-bind them or
that we should fix our code/tests to account for the upstream changes from those dependencies.

Whenever we upper-bound such a dependency, we should always comment why we are doing it - i.e. we should have
a good reason why dependency is upper-bound. And we should also mention what is the condition to remove the
binding.

### Approach for dependencies for Airflow Core

Those `extras` and `providers` dependencies are maintained in `setup.cfg`.

There are few dependencies that we decided are important enough to upper-bound them by default, as they are
known to follow predictable versioning scheme, and we know that new versions of those are very likely to
bring breaking changes. We commit to regularly review and attempt to upgrade to the newer versions of
the dependencies as they are released, but this is manual process.

The important dependencies are:

* `SQLAlchemy`: upper-bound to specific MINOR version (SQLAlchemy is known to remove deprecations and
   introduce breaking changes especially that support for different Databases varies and changes at
   various speed (example: SQLAlchemy 1.4 broke MSSQL integration for Airflow)
* `Alembic`: it is important to handle our migrations in predictable and performant way. It is developed
   together with SQLAlchemy. Our experience with Alembic is that it very stable in MINOR version
* `Flask`: We are using Flask as the back-bone of our web UI and API. We know major version of Flask
   are very likely to introduce breaking changes across those so limiting it to MAJOR version makes sense
* `werkzeug`: the library is known to cause problems in new versions. It is tightly coupled with Flask
   libraries, and we should update them together
* `celery`: Celery is crucial component of Airflow as it used for CeleryExecutor (and similar). Celery
   [follows SemVer](https://docs.celeryq.dev/en/stable/contributing.html?highlight=semver#versions), so
   we should upper-bound it to the next MAJOR version. Also when we bump the upper version of the library,
   we should make sure Celery Provider minimum Airflow version is updated).
* `kubernetes`: Kubernetes is a crucial component of Airflow as it is used for the KubernetesExecutor
   (and similar). Kubernetes Python library [follows SemVer](https://github.com/kubernetes-client/python#compatibility),
   so we should upper-bound it to the next MAJOR version. Also when we bump the upper version of the library,
   we should make sure Kubernetes Provider minimum Airflow version is updated.

### Approach for dependencies in Airflow Providers and extras

Those `extras` and `providers` dependencies are maintained in `provider.yaml` of each provider.

By default, we should not upper-bound dependencies for providers, however each provider's maintainer
might decide to add additional limits (and justify them with comment)

## Release process for Providers

Providers released by the community (with roughly monthly cadence) have
limitation of a minimum supported version of Airflow. The minimum version of
Airflow is the `MINOR` version (2.2, 2.3 etc.) indicating that the providers
might use features that appeared in this release. The default support timespan
for the minimum version of Airflow (there could be justified exceptions) is
that we increase the minimum Airflow version, when 12 months passed since the
first release for the MINOR version of Airflow.

For example this means that by default we upgrade the minimum version of Airflow supported by providers
to 2.4.0 in the first Provider's release after 30th of April 2023. The 30th of April 2022 is the date when the
first `PATCHLEVEL` of 2.3 (2.3.0) has been released.

When we increase the minimum Airflow version, this is not a reason to bump `MAJOR` version of the providers
(unless there are other breaking changes in the provider). The reason for that is that people who use
older version of Airflow will not be able to use that provider (so it is not a breaking change for them)
and for people who are using supported version of Airflow this is not a breaking change on its own - they
will be able to use the new version without breaking their workflows. When we upgraded min-version to
2.2+, our approach was different but as of 2.3+ upgrade (November 2022) we only bump `MINOR` version of the
provider when we increase minimum Airflow version.

Providers are often connected with some stakeholders that are vitally interested in maintaining backwards
compatibilities in their integrations (for example cloud providers, or specific service providers). But,
we are also bound with the [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
which describes who releases, and how to release the ASF software. The provider's governance model is something we name
"mixed governance" - where we follow the release policies, while the burden of maintaining and testing
the cherry-picked versions is on those who commit to perform the cherry-picks and make PRs to older
branches.

The "mixed governance" (optional, per-provider) means that:

* The Airflow Community and release manager decide when to release those providers.
  This is fully managed by the community and the usual release-management process following the
  [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
* The contributors (who might or might not be direct stakeholders in the provider) will carry the burden
  of cherry-picking and testing the older versions of providers.
* There is no "selection" and acceptance process to determine which version of the provider is released.
  It is determined by the actions of contributors raising the PR with cherry-picked changes and it follows
  the usual PR review process where maintainer approves (or not) and merges (or not) such PR. Simply
  speaking - the completed action of cherry-picking and testing the older version of the provider make
  it eligible to be released. Unless there is someone who volunteers and perform the cherry-picking and
  testing, the provider is not released.
* Branches to raise PR against are created when a contributor commits to perform the cherry-picking
  (as a comment in PR to cherry-pick for example)

Usually, community effort is focused on the most recent version of each provider. The community approach is
that we should rather aggressively remove deprecations in "major" versions of the providers - whenever
there is an opportunity to increase major version of a provider, we attempt to remove all deprecations.
However, sometimes there is a contributor (who might or might not represent stakeholder),
willing to make their effort on cherry-picking and testing the non-breaking changes to a selected,
previous major branch of the provider. This results in releasing at most two versions of a
provider at a time:

* potentially breaking "latest" major version
* selected past major version with non-breaking changes applied by the contributor

Cherry-picking such changes follows the same process for releasing Airflow
patch-level releases for a previous minor Airflow version. Usually such cherry-picking is done when
there is an important bugfix and the latest version contains breaking changes that are not
coupled with the bugfix. Releasing them together in the latest version of the provider effectively couples
them, and therefore they're released separately. The cherry-picked changes have to be merged by the committer following the usual rules of the
community.

There is no obligation to cherry-pick and release older versions of the providers.
The community continues to release such older versions of the providers for as long as there is an effort
of the contributors to perform the cherry-picks and carry-on testing of the older provider version.

The availability of stakeholder that can manage "service-oriented" maintenance and agrees to such a
responsibility, will also drive our willingness to accept future, new providers to become community managed.

## Contributing

Want to help build Apache Airflow? Check out our [contributing documentation](https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst).

Official Docker (container) images for Apache Airflow are described in [IMAGES.rst](https://github.com/apache/airflow/blob/main/IMAGES.rst).

## Who uses Apache Airflow?

More than 400 organizations are using Apache Airflow
[in the wild](https://github.com/apache/airflow/blob/main/INTHEWILD.md).

## Who Maintains Apache Airflow?

Airflow is the work of the [community](https://github.com/apache/airflow/graphs/contributors),
but the [core committers/maintainers](https://people.apache.org/committers-by-project.html#airflow)
are responsible for reviewing and merging PRs as well as steering conversations around new feature requests.
If you would like to become a maintainer, please review the Apache Airflow
[committer requirements](https://github.com/apache/airflow/blob/main/COMMITTERS.rst#guidelines-to-become-an-airflow-committer).

## Can I use the Apache Airflow logo in my presentation?

Yes! Be sure to abide by the Apache Foundation [trademark policies](https://www.apache.org/foundation/marks/#books) and the Apache Airflow [Brandbook](https://cwiki.apache.org/confluence/display/AIRFLOW/Brandbook). The most up to date logos are found in [this repo](/docs/apache-airflow/img/logos) and on the Apache Software Foundation [website](https://www.apache.org/logos/about.html).

## Airflow merchandise

If you would love to have Apache Airflow stickers, t-shirt, etc. then check out
[Redbubble Shop](https://www.redbubble.com/i/sticker/Apache-Airflow-by-comdev/40497530.EJUG5).

## Links

- [Documentation](https://airflow.apache.org/docs/apache-airflow/stable/)
- [Chat](https://s.apache.org/airflow-slack)

## Sponsors

The CI infrastructure for Apache Airflow has been sponsored by:

<!-- Ordered by most recently "funded" -->

<a href="https://astronomer.io"><img src="https://assets2.astronomer.io/logos/logoForLIGHTbackground.png" alt="astronomer.io" width="250px"></a>
<a href="https://aws.amazon.com/opensource/"><img src="docs/integration-logos/aws/AWS-Cloud-alt_light-bg@4x.png" alt="AWS OpenSource" width="130px"></a>


%package help
Summary:	Development documents and examples for apache-airflow
Provides:	python3-apache-airflow-doc
%description help
<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-->

# Apache Airflow

[![PyPI version](https://badge.fury.io/py/apache-airflow.svg)](https://badge.fury.io/py/apache-airflow)
[![GitHub Build](https://github.com/apache/airflow/workflows/CI%20Build/badge.svg)](https://github.com/apache/airflow/actions)
[![Coverage Status](https://img.shields.io/codecov/c/github/apache/airflow/main.svg)](https://codecov.io/github/apache/airflow?branch=main)
[![License](https://img.shields.io/:license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/apache-airflow.svg)](https://pypi.org/project/apache-airflow/)
[![Docker Pulls](https://img.shields.io/docker/pulls/apache/airflow.svg)](https://hub.docker.com/r/apache/airflow)
[![Docker Stars](https://img.shields.io/docker/stars/apache/airflow.svg)](https://hub.docker.com/r/apache/airflow)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/apache-airflow)](https://pypi.org/project/apache-airflow/)
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/apache-airflow)](https://artifacthub.io/packages/search?repo=apache-airflow)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Twitter Follow](https://img.shields.io/twitter/follow/ApacheAirflow.svg?style=social&label=Follow)](https://twitter.com/ApacheAirflow)
[![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://s.apache.org/airflow-slack)
[![Contributors](https://img.shields.io/github/contributors/apache/airflow)](https://github.com/apache/airflow/graphs/contributors)

[Apache Airflow](https://airflow.apache.org/docs/apache-airflow/stable/) (or simply Airflow) is a platform to programmatically author, schedule, and monitor workflows.

When workflows are defined as code, they become more maintainable, versionable, testable, and collaborative.

Use Airflow to author workflows as directed acyclic graphs (DAGs) of tasks. The Airflow scheduler executes your tasks on an array of workers while following the specified dependencies. Rich command line utilities make performing complex surgeries on DAGs a snap. The rich user interface makes it easy to visualize pipelines running in production, monitor progress, and troubleshoot issues when needed.

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of contents**

- [Project Focus](#project-focus)
- [Principles](#principles)
- [Requirements](#requirements)
- [Getting started](#getting-started)
- [Installing from PyPI](#installing-from-pypi)
- [Official source code](#official-source-code)
- [Convenience packages](#convenience-packages)
- [User Interface](#user-interface)
- [Semantic versioning](#semantic-versioning)
- [Version Life Cycle](#version-life-cycle)
- [Support for Python and Kubernetes versions](#support-for-python-and-kubernetes-versions)
- [Base OS support for reference Airflow images](#base-os-support-for-reference-airflow-images)
- [Approach to dependencies of Airflow](#approach-to-dependencies-of-airflow)
- [Release process for Providers](#release-process-for-providers)
- [Contributing](#contributing)
- [Who uses Apache Airflow?](#who-uses-apache-airflow)
- [Who Maintains Apache Airflow?](#who-maintains-apache-airflow)
- [Can I use the Apache Airflow logo in my presentation?](#can-i-use-the-apache-airflow-logo-in-my-presentation)
- [Airflow merchandise](#airflow-merchandise)
- [Links](#links)
- [Sponsors](#sponsors)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## Project Focus

Airflow works best with workflows that are mostly static and slowly changing. When the DAG structure is similar from one run to the next, it clarifies the unit of work and continuity. Other similar projects include [Luigi](https://github.com/spotify/luigi), [Oozie](https://oozie.apache.org/) and [Azkaban](https://azkaban.github.io/).

Airflow is commonly used to process data, but has the opinion that tasks should ideally be idempotent (i.e., results of the task will be the same, and will not create duplicated data in a destination system), and should not pass large quantities of data from one task to the next (though tasks can pass metadata using Airflow's [XCom feature](https://airflow.apache.org/docs/apache-airflow/stable/concepts/xcoms.html)). For high-volume, data-intensive tasks, a best practice is to delegate to external services specializing in that type of work.

Airflow is not a streaming solution, but it is often used to process real-time data, pulling data off streams in batches.

## Principles

- **Dynamic**: Airflow pipelines are configuration as code (Python), allowing for dynamic pipeline generation. This allows for writing code that instantiates pipelines dynamically.
- **Extensible**: Easily define your own operators, executors and extend the library so that it fits the level of abstraction that suits your environment.
- **Elegant**: Airflow pipelines are lean and explicit. Parameterizing your scripts is built into the core of Airflow using the powerful **Jinja** templating engine.
- **Scalable**: Airflow has a modular architecture and uses a message queue to orchestrate an arbitrary number of workers.

## Requirements

Apache Airflow is tested with:

|                     | Main version (dev)           | Stable version (2.5.3)       |
|---------------------|------------------------------|------------------------------|
| Python              | 3.7, 3.8, 3.9, 3.10          | 3.7, 3.8, 3.9, 3.10          |
| Platform            | AMD64/ARM64(\*)              | AMD64/ARM64(\*)              |
| Kubernetes          | 1.21, 1.22, 1.23, 1.24, 1.25 | 1.21, 1.22, 1.23, 1.24, 1.25 |
| PostgreSQL          | 11, 12, 13, 14, 15           | 11, 12, 13, 14, 15           |
| MySQL               | 5.7, 8                       | 5.7, 8                       |
| SQLite              | 3.15.0+                      | 3.15.0+                      |
| MSSQL               | 2017(\*), 2019 (\*)          | 2017(\*), 2019 (\*)          |

\* Experimental

**Note**: MySQL 5.x versions are unable to or have limitations with
running multiple schedulers -- please see the [Scheduler docs](https://airflow.apache.org/docs/apache-airflow/stable/scheduler.html).
MariaDB is not tested/recommended.

**Note**: SQLite is used in Airflow tests. Do not use it in production. We recommend
using the latest stable version of SQLite for local development.

**Note**: Airflow currently can be run on POSIX-compliant Operating Systems. For development it is regularly
tested on fairly modern Linux Distros and recent versions of MacOS.
On Windows you can run it via WSL2 (Windows Subsystem for Linux 2) or via Linux Containers.
The work to add Windows support is tracked via [#10388](https://github.com/apache/airflow/issues/10388) but
it is not a high priority. You should only use Linux-based distros as "Production" execution environment
as this is the only environment that is supported. The only distro that is used in our CI tests and that
is used in the [Community managed DockerHub image](https://hub.docker.com/p/apache/airflow) is
`Debian Bullseye`.

## Getting started

Visit the official Airflow website documentation (latest **stable** release) for help with
[installing Airflow](https://airflow.apache.org/docs/apache-airflow/stable/installation.html),
[getting started](https://airflow.apache.org/docs/apache-airflow/stable/start.html), or walking
through a more complete [tutorial](https://airflow.apache.org/docs/apache-airflow/stable/tutorial.html).

> Note: If you're looking for documentation for the main branch (latest development branch): you can find it on [s.apache.org/airflow-docs](https://s.apache.org/airflow-docs/).

For more information on Airflow Improvement Proposals (AIPs), visit
the [Airflow Wiki](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals).

Documentation for dependent projects like provider packages, Docker image, Helm Chart, you'll find it in [the documentation index](https://airflow.apache.org/docs/).

## Installing from PyPI

We publish Apache Airflow as `apache-airflow` package in PyPI. Installing it however might be sometimes tricky
because Airflow is a bit of both a library and application. Libraries usually keep their dependencies open, and
applications usually pin them, but we should do neither and both simultaneously. We decided to keep
our dependencies as open as possible (in `setup.py`) so users can install different versions of libraries
if needed. This means that `pip install apache-airflow` will not work from time to time or will
produce unusable Airflow installation.

To have repeatable installation, however, we keep a set of "known-to-be-working" constraint
files in the orphan `constraints-main` and `constraints-2-0` branches. We keep those "known-to-be-working"
constraints files separately per major/minor Python version.
You can use them as constraint files when installing Airflow from PyPI. Note that you have to specify
correct Airflow tag/version/branch and Python versions in the URL.


1. Installing just Airflow:

> Note: Only `pip` installation is currently officially supported.

While it is possible to install Airflow with tools like [Poetry](https://python-poetry.org) or
[pip-tools](https://pypi.org/project/pip-tools), they do not share the same workflow as
`pip` - especially when it comes to constraint vs. requirements management.
Installing via `Poetry` or `pip-tools` is not currently supported.

If you wish to install Airflow using those tools, you should use the constraint files and convert
them to the appropriate format and workflow that your tool requires.


```bash
pip install 'apache-airflow==2.5.3' \
 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.7.txt"
```

2. Installing with extras (i.e., postgres, google)

```bash
pip install 'apache-airflow[postgres,google]==2.5.3' \
 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.7.txt"
```

For information on installing provider packages, check
[providers](http://airflow.apache.org/docs/apache-airflow-providers/index.html).

## Official source code

Apache Airflow is an [Apache Software Foundation](https://www.apache.org) (ASF) project,
and our official source code releases:

- Follow the [ASF Release Policy](https://www.apache.org/legal/release-policy.html)
- Can be downloaded from [the ASF Distribution Directory](https://downloads.apache.org/airflow)
- Are cryptographically signed by the release manager
- Are officially voted on by the PMC members during the
  [Release Approval Process](https://www.apache.org/legal/release-policy.html#release-approval)

Following the ASF rules, the source packages released must be sufficient for a user to build and test the
release provided they have access to the appropriate platform and tools.

## Convenience packages

There are other ways of installing and using Airflow. Those are "convenience" methods - they are
not "official releases" as stated by the `ASF Release Policy`, but they can be used by the users
who do not want to build the software themselves.

Those are - in the order of most common ways people install Airflow:

- [PyPI releases](https://pypi.org/project/apache-airflow/) to install Airflow using standard `pip` tool
- [Docker Images](https://hub.docker.com/r/apache/airflow) to install airflow via
  `docker` tool, use them in Kubernetes, Helm Charts, `docker-compose`, `docker swarm`, etc. You can
  read more about using, customising, and extending the images in the
  [Latest docs](https://airflow.apache.org/docs/docker-stack/index.html), and
  learn details on the internals in the [IMAGES.rst](https://github.com/apache/airflow/blob/main/IMAGES.rst) document.
- [Tags in GitHub](https://github.com/apache/airflow/tags) to retrieve the git project sources that
  were used to generate official source packages via git

All those artifacts are not official releases, but they are prepared using officially released sources.
Some of those artifacts are "development" or "pre-release" ones, and they are clearly marked as such
following the ASF Policy.

## User Interface

- **DAGs**: Overview of all DAGs in your environment.

  ![DAGs](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/dags.png)

- **Grid**: Grid representation of a DAG that spans across time.

  ![Grid](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/grid.png)

- **Graph**: Visualization of a DAG's dependencies and their current status for a specific run.

  ![Graph](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/graph.png)

- **Task Duration**: Total time spent on different tasks over time.

  ![Task Duration](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/duration.png)

- **Gantt**: Duration and overlap of a DAG.

  ![Gantt](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/gantt.png)

- **Code**: Quick way to view source code of a DAG.

  ![Code](https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/img/code.png)

## Semantic versioning

As of Airflow 2.0.0, we support a strict [SemVer](https://semver.org/) approach for all packages released.

There are few specific rules that we agreed to that define details of versioning of the different
packages:

* **Airflow**: SemVer rules apply to core airflow only (excludes any changes to providers).
  Changing limits for versions of Airflow dependencies is not a breaking change on its own.
* **Airflow Providers**: SemVer rules apply to changes in the particular provider's code only.
  SemVer MAJOR and MINOR versions for the packages are independent of the Airflow version.
  For example, `google 4.1.0` and `amazon 3.0.3` providers can happily be installed
  with `Airflow 2.1.2`. If there are limits of cross-dependencies between providers and Airflow packages,
  they are present in providers as `install_requires` limitations. We aim to keep backwards
  compatibility of providers with all previously released Airflow 2 versions but
  there will sometimes be breaking changes that might make some, or all
  providers, have minimum Airflow version specified. Change of that minimum supported Airflow version
  is a breaking change for provider because installing the new provider might automatically
  upgrade Airflow (which might be an undesired side effect of upgrading provider).
* **Airflow Helm Chart**: SemVer rules apply to changes in the chart only. SemVer MAJOR and MINOR
  versions for the chart are independent from the Airflow version. We aim to keep backwards
  compatibility of the Helm Chart with all released Airflow 2 versions, but some new features might
  only work starting from specific Airflow releases. We might however limit the Helm
  Chart to depend on minimal Airflow version.
* **Airflow API clients**: SemVer MAJOR and MINOR versions follow MAJOR and MINOR versions of Airflow.
  The first MAJOR or MINOR X.Y.0 release of Airflow should always be followed by X.Y.0 release of
  all clients. An airflow PATCH X.Y.Z release can be followed by a PATCH release of API clients, only
  if this PATCH is relevant to the clients.
  The clients then can release their own PATCH releases with bugfixes, independently of Airflow PATCH releases.
  As a consequence, each API client will have its own PATCH version that may or may not be in sync with the Airflow
  PATCH version. For a specific MAJOR/MINOR Airflow version, users should favor the latest PATCH version of clients
  independently of their Airflow PATCH version.

## Version Life Cycle

Apache Airflow version life cycle:

<!-- This table is automatically updated by pre-commit scripts/ci/pre_commit/pre_commit_supported_versions.py -->
<!-- Beginning of auto-generated table -->

| Version   | Current Patch/Minor   | State     | First Release   | Limited Support   | EOL/Terminated   |
|-----------|-----------------------|-----------|-----------------|-------------------|------------------|
| 2         | 2.5.3                 | Supported | Dec 17, 2020    | TBD               | TBD              |
| 1.10      | 1.10.15               | EOL       | Aug 27, 2018    | Dec 17, 2020      | June 17, 2021    |
| 1.9       | 1.9.0                 | EOL       | Jan 03, 2018    | Aug 27, 2018      | Aug 27, 2018     |
| 1.8       | 1.8.2                 | EOL       | Mar 19, 2017    | Jan 03, 2018      | Jan 03, 2018     |
| 1.7       | 1.7.1.2               | EOL       | Mar 28, 2016    | Mar 19, 2017      | Mar 19, 2017     |

<!-- End of auto-generated table -->

Limited support versions will be supported with security and critical bug fix only.
EOL versions will not get any fixes nor support.
We always recommend that all users run the latest available minor release for whatever major version is in use.
We **highly** recommend upgrading to the latest Airflow major release at the earliest convenient time and before the EOL date.

## Support for Python and Kubernetes versions

As of Airflow 2.0, we agreed to certain rules we follow for Python and Kubernetes support.
They are based on the official release schedule of Python and Kubernetes, nicely summarized in the
[Python Developer's Guide](https://devguide.python.org/#status-of-python-branches) and
[Kubernetes version skew policy](https://kubernetes.io/docs/setup/release/version-skew-policy/).

1. We drop support for Python and Kubernetes versions when they reach EOL. Except for Kubernetes, a
   version stays supported by Airflow if two major cloud providers still provide support for it. We drop
   support for those EOL versions in main right after EOL date, and it is effectively removed when we release
   the first new MINOR (Or MAJOR if there is no new MINOR version) of Airflow. For example, for Python 3.7 it
   means that we will drop support in main right after 27.06.2023, and the first MAJOR or MINOR version of
   Airflow released after will not have it.

2. The "oldest" supported version of Python/Kubernetes is the default one until we decide to switch to
   later version. "Default" is only meaningful in terms of "smoke tests" in CI PRs, which are run using this
   default version and the default reference image available. Currently `apache/airflow:latest`
   and `apache/airflow:2.5.3` images are Python 3.7 images. This means that default reference image will
   become the default at the time when we start preparing for dropping 3.7 support which is few months
   before the end of life for Python 3.7.

3. We support a new version of Python/Kubernetes in main after they are officially released, as soon as we
   make them work in our CI pipeline (which might not be immediate due to dependencies catching up with
   new versions of Python mostly) we release new images/support in Airflow based on the working CI setup.

## Base OS support for reference Airflow images

The Airflow Community provides conveniently packaged container images that are published whenever
we publish an Apache Airflow release. Those images contain:

* Base OS with necessary packages to install Airflow (stable Debian OS)
* Base Python installation in versions supported at the time of release for the MINOR version of
  Airflow released (so there could be different versions for 2.3 and 2.2 line for example)
* Libraries required to connect to suppoerted Databases (again the set of databases supported depends
  on the MINOR version of Airflow.
* Predefined set of popular providers (for details see the [Dockerfile](https://raw.githubusercontent.com/apache/airflow/main/Dockerfile)).
* Possibility of building your own, custom image where the user can choose their own set of providers
  and libraries (see [Building the image](https://airflow.apache.org/docs/docker-stack/build.html))
* In the future Airflow might also support a "slim" version without providers nor database clients installed

The version of the base OS image is the stable version of Debian. Airflow supports using all currently active
stable versions - as soon as all Airflow dependencies support building, and we set up the CI pipeline for
building and testing the OS version. Approximately 6 months before the end-of-life of a previous stable
version of the OS, Airflow switches the images released to use the latest supported version of the OS.
For example since ``Debian Buster`` end-of-life was August 2022, Airflow switched the images in `main` branch
to use ``Debian Bullseye`` in February/March 2022. The version was used in the next MINOR release after
the switch happened. In case of the Bullseye switch - 2.3.0 version used ``Debian Bullseye``.
The images released  in the previous MINOR version continue to use the version that all other releases
for the MINOR version used.

Support for ``Debian Buster`` image was dropped in August 2022 completely and everyone is expected to
stop building their images using ``Debian Buster``.

Users will continue to be able to build their images using stable Debian releases until the end of life and
building and verifying of the images happens in our CI but no unit tests were executed using this image in
the `main` branch.

## Approach to dependencies of Airflow

Airflow has a lot of dependencies - direct and transitive, also Airflow is both - library and application,
therefore our policies to dependencies has to include both - stability of installation of application,
but also ability to install newer version of dependencies for those users who develop DAGs. We developed
the approach where `constraints` are used to make sure airflow can be installed in a repeatable way, while
we do not limit our users to upgrade most of the dependencies. As a result we decided not to upper-bound
version of Airflow dependencies by default, unless we have good reasons to believe upper-bounding them is
needed because of importance of the dependency as well as risk it involves to upgrade specific dependency.
We also upper-bound the dependencies that we know cause problems.

The constraint mechanism of ours takes care about finding and upgrading all the non-upper bound dependencies
automatically (providing that all the tests pass). Our `main` build failures will indicate in case there
are versions of dependencies that break our tests - indicating that we should either upper-bind them or
that we should fix our code/tests to account for the upstream changes from those dependencies.

Whenever we upper-bound such a dependency, we should always comment why we are doing it - i.e. we should have
a good reason why dependency is upper-bound. And we should also mention what is the condition to remove the
binding.

### Approach for dependencies for Airflow Core

Those `extras` and `providers` dependencies are maintained in `setup.cfg`.

There are few dependencies that we decided are important enough to upper-bound them by default, as they are
known to follow predictable versioning scheme, and we know that new versions of those are very likely to
bring breaking changes. We commit to regularly review and attempt to upgrade to the newer versions of
the dependencies as they are released, but this is manual process.

The important dependencies are:

* `SQLAlchemy`: upper-bound to specific MINOR version (SQLAlchemy is known to remove deprecations and
   introduce breaking changes especially that support for different Databases varies and changes at
   various speed (example: SQLAlchemy 1.4 broke MSSQL integration for Airflow)
* `Alembic`: it is important to handle our migrations in predictable and performant way. It is developed
   together with SQLAlchemy. Our experience with Alembic is that it very stable in MINOR version
* `Flask`: We are using Flask as the back-bone of our web UI and API. We know major version of Flask
   are very likely to introduce breaking changes across those so limiting it to MAJOR version makes sense
* `werkzeug`: the library is known to cause problems in new versions. It is tightly coupled with Flask
   libraries, and we should update them together
* `celery`: Celery is crucial component of Airflow as it used for CeleryExecutor (and similar). Celery
   [follows SemVer](https://docs.celeryq.dev/en/stable/contributing.html?highlight=semver#versions), so
   we should upper-bound it to the next MAJOR version. Also when we bump the upper version of the library,
   we should make sure Celery Provider minimum Airflow version is updated).
* `kubernetes`: Kubernetes is a crucial component of Airflow as it is used for the KubernetesExecutor
   (and similar). Kubernetes Python library [follows SemVer](https://github.com/kubernetes-client/python#compatibility),
   so we should upper-bound it to the next MAJOR version. Also when we bump the upper version of the library,
   we should make sure Kubernetes Provider minimum Airflow version is updated.

### Approach for dependencies in Airflow Providers and extras

Those `extras` and `providers` dependencies are maintained in `provider.yaml` of each provider.

By default, we should not upper-bound dependencies for providers, however each provider's maintainer
might decide to add additional limits (and justify them with comment)

## Release process for Providers

Providers released by the community (with roughly monthly cadence) have
limitation of a minimum supported version of Airflow. The minimum version of
Airflow is the `MINOR` version (2.2, 2.3 etc.) indicating that the providers
might use features that appeared in this release. The default support timespan
for the minimum version of Airflow (there could be justified exceptions) is
that we increase the minimum Airflow version, when 12 months passed since the
first release for the MINOR version of Airflow.

For example this means that by default we upgrade the minimum version of Airflow supported by providers
to 2.4.0 in the first Provider's release after 30th of April 2023. The 30th of April 2022 is the date when the
first `PATCHLEVEL` of 2.3 (2.3.0) has been released.

When we increase the minimum Airflow version, this is not a reason to bump `MAJOR` version of the providers
(unless there are other breaking changes in the provider). The reason for that is that people who use
older version of Airflow will not be able to use that provider (so it is not a breaking change for them)
and for people who are using supported version of Airflow this is not a breaking change on its own - they
will be able to use the new version without breaking their workflows. When we upgraded min-version to
2.2+, our approach was different but as of 2.3+ upgrade (November 2022) we only bump `MINOR` version of the
provider when we increase minimum Airflow version.

Providers are often connected with some stakeholders that are vitally interested in maintaining backwards
compatibilities in their integrations (for example cloud providers, or specific service providers). But,
we are also bound with the [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
which describes who releases, and how to release the ASF software. The provider's governance model is something we name
"mixed governance" - where we follow the release policies, while the burden of maintaining and testing
the cherry-picked versions is on those who commit to perform the cherry-picks and make PRs to older
branches.

The "mixed governance" (optional, per-provider) means that:

* The Airflow Community and release manager decide when to release those providers.
  This is fully managed by the community and the usual release-management process following the
  [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
* The contributors (who might or might not be direct stakeholders in the provider) will carry the burden
  of cherry-picking and testing the older versions of providers.
* There is no "selection" and acceptance process to determine which version of the provider is released.
  It is determined by the actions of contributors raising the PR with cherry-picked changes and it follows
  the usual PR review process where maintainer approves (or not) and merges (or not) such PR. Simply
  speaking - the completed action of cherry-picking and testing the older version of the provider make
  it eligible to be released. Unless there is someone who volunteers and perform the cherry-picking and
  testing, the provider is not released.
* Branches to raise PR against are created when a contributor commits to perform the cherry-picking
  (as a comment in PR to cherry-pick for example)

Usually, community effort is focused on the most recent version of each provider. The community approach is
that we should rather aggressively remove deprecations in "major" versions of the providers - whenever
there is an opportunity to increase major version of a provider, we attempt to remove all deprecations.
However, sometimes there is a contributor (who might or might not represent stakeholder),
willing to make their effort on cherry-picking and testing the non-breaking changes to a selected,
previous major branch of the provider. This results in releasing at most two versions of a
provider at a time:

* potentially breaking "latest" major version
* selected past major version with non-breaking changes applied by the contributor

Cherry-picking such changes follows the same process for releasing Airflow
patch-level releases for a previous minor Airflow version. Usually such cherry-picking is done when
there is an important bugfix and the latest version contains breaking changes that are not
coupled with the bugfix. Releasing them together in the latest version of the provider effectively couples
them, and therefore they're released separately. The cherry-picked changes have to be merged by the committer following the usual rules of the
community.

There is no obligation to cherry-pick and release older versions of the providers.
The community continues to release such older versions of the providers for as long as there is an effort
of the contributors to perform the cherry-picks and carry-on testing of the older provider version.

The availability of stakeholder that can manage "service-oriented" maintenance and agrees to such a
responsibility, will also drive our willingness to accept future, new providers to become community managed.

## Contributing

Want to help build Apache Airflow? Check out our [contributing documentation](https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst).

Official Docker (container) images for Apache Airflow are described in [IMAGES.rst](https://github.com/apache/airflow/blob/main/IMAGES.rst).

## Who uses Apache Airflow?

More than 400 organizations are using Apache Airflow
[in the wild](https://github.com/apache/airflow/blob/main/INTHEWILD.md).

## Who Maintains Apache Airflow?

Airflow is the work of the [community](https://github.com/apache/airflow/graphs/contributors),
but the [core committers/maintainers](https://people.apache.org/committers-by-project.html#airflow)
are responsible for reviewing and merging PRs as well as steering conversations around new feature requests.
If you would like to become a maintainer, please review the Apache Airflow
[committer requirements](https://github.com/apache/airflow/blob/main/COMMITTERS.rst#guidelines-to-become-an-airflow-committer).

## Can I use the Apache Airflow logo in my presentation?

Yes! Be sure to abide by the Apache Foundation [trademark policies](https://www.apache.org/foundation/marks/#books) and the Apache Airflow [Brandbook](https://cwiki.apache.org/confluence/display/AIRFLOW/Brandbook). The most up to date logos are found in [this repo](/docs/apache-airflow/img/logos) and on the Apache Software Foundation [website](https://www.apache.org/logos/about.html).

## Airflow merchandise

If you would love to have Apache Airflow stickers, t-shirt, etc. then check out
[Redbubble Shop](https://www.redbubble.com/i/sticker/Apache-Airflow-by-comdev/40497530.EJUG5).

## Links

- [Documentation](https://airflow.apache.org/docs/apache-airflow/stable/)
- [Chat](https://s.apache.org/airflow-slack)

## Sponsors

The CI infrastructure for Apache Airflow has been sponsored by:

<!-- Ordered by most recently "funded" -->

<a href="https://astronomer.io"><img src="https://assets2.astronomer.io/logos/logoForLIGHTbackground.png" alt="astronomer.io" width="250px"></a>
<a href="https://aws.amazon.com/opensource/"><img src="docs/integration-logos/aws/AWS-Cloud-alt_light-bg@4x.png" alt="AWS OpenSource" width="130px"></a>


%prep
%autosetup -n apache-airflow-2.5.3

%build
%py3_build

%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
	find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
	find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
	find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
	find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
	find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .

%files -n python3-apache-airflow -f filelist.lst
%dir %{python3_sitelib}/*

%files help -f doclist.lst
%{_docdir}/*

%changelog
* Fri Apr 21 2023 Python_Bot <Python_Bot@openeuler.org> - 2.5.3-1
- Package Spec generated