Skip to content

Commit

Permalink
Temporarily pin xmltodict to 0.12.0 to fix main failure
Browse files Browse the repository at this point in the history
The xmltodict 0,13.0 breaks some tests and likely 0.13.0 is buggy
as the error is ValueError: Malformatted input.

We pin it to 0.12.0 to fix the main failing.

Related: apache#23576
  • Loading branch information
potiuk committed May 9, 2022
1 parent c3386c5 commit dfda29b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ def write_version(filename: str = os.path.join(*[my_dir, "airflow", "git_version
pandas_requirement,
'mypy-boto3-rds>=1.21.0',
'mypy-boto3-redshift-data>=1.21.0',
# XML to dict 0.13.0 breaks some EMR tests
# It should be removed once we solve https://github.com/apache/airflow/issues/23576
'xmltodict<0.13.0',
]
apache_beam = [
'apache-beam>=2.33.0',
Expand Down

0 comments on commit dfda29b

Please sign in to comment.