Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
55581ce
updates type imports to use typing_compat #21566
Feb 14, 2022
04e58c9
Revert "updates type imports to use typing_compat #21566"
Feb 15, 2022
35358d4
Removes <Python3.8 from typing_extensions requirement
Feb 15, 2022
0211a39
adds comments per @potiuk
Feb 15, 2022
8deb62f
updates type imports to use typing_compat #21566
Feb 14, 2022
0686d9f
Revert "updates type imports to use typing_compat #21566"
Feb 15, 2022
074132f
Removes <Python3.8 from typing_extensions requirement
Feb 15, 2022
f3c0ef6
adds comments per @potiuk
Feb 15, 2022
bccb0ca
Merge branch 'main' into frankcash/literal-patch
Feb 21, 2022
cf107fe
Merge branch 'main' into frankcash/literal-patch
Feb 22, 2022
e1da987
Merge branch 'frankcash/literal-patch' of github.com:frankcash/airflo…
Feb 22, 2022
47c5e31
Merge branch 'main' into frankcash/literal-patch
Feb 23, 2022
a3414f1
Merge branch 'main' into frankcash/literal-patch
Feb 23, 2022
d545ea6
Merge branch 'main' into frankcash/literal-patch
Feb 23, 2022
e9e9904
Merge branch 'main' into frankcash/literal-patch
Feb 23, 2022
c9368ac
Merge branch 'main' into frankcash/literal-patch
Feb 23, 2022
6b07177
Merge branch 'main' into frankcash/literal-patch
Feb 24, 2022
033c4c3
Merge branch 'main' into frankcash/literal-patch
Feb 24, 2022
b37cbbf
Merge branch 'main' into frankcash/literal-patch
Feb 24, 2022
cef1573
Merge branch 'main' into frankcash/literal-patch
Feb 24, 2022
ed1a12e
Merge branch 'main' into frankcash/literal-patch
Feb 25, 2022
f7f1e9b
Merge branch 'main' into frankcash/literal-patch
Feb 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ install_requires =
tabulate>=0.7.5
tenacity>=6.2.0
termcolor>=1.1.0
typing-extensions>=3.7.4;python_version<"3.8"
# typing-extensions can be removed under two scenarios: dropping support for python 3.7
# or bumping the minimum version of airflow for providers to 2.2.* which would allow the use of airflow.typing_compat
typing-extensions>=3.7.4
unicodecsv>=0.14.1
# Werkzeug is known to cause breaking changes and it is very closely tied with FlaskAppBuilder and other
# Flask dependencies and the limit to 1.* line should be reviewed when we upgrade Flask and remove
Expand Down