Skip to content

Commit 4ca7a9b

Browse files
authored
fix(ingest/build): setting typing extension <4.6.0 because it breaks tests (#8108)
1 parent f70cb05 commit 4ca7a9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metadata-ingestion/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def get_long_description():
2020
base_requirements = {
2121
# Typing extension should be >=3.10.0.2 ideally but we can't restrict due to Airflow 2.0.2 dependency conflict
2222
"typing_extensions>=3.7.4.3 ; python_version < '3.8'",
23-
"typing_extensions>=3.10.0.2 ; python_version >= '3.8'",
23+
"typing_extensions>=3.10.0.2,<4.6.0 ; python_version >= '3.8'",
2424
"mypy_extensions>=0.4.3",
2525
# Actual dependencies.
2626
"typing-inspect",
@@ -57,7 +57,7 @@ def get_long_description():
5757
"requests_file",
5858
"jsonref",
5959
"jsonschema",
60-
"ruamel.yaml"
60+
"ruamel.yaml",
6161
}
6262

6363
rest_common = {"requests", "requests_file"}

0 commit comments

Comments
 (0)