Skip to content

Commit

Permalink
pin xmltodict to fix aws test failures, until moto 3.1.9 (#7806)
Browse files Browse the repository at this point in the history
* pin xmltodict to fix aws test failures, until moto 3.1.9

* add comment
  • Loading branch information
prha committed May 9, 2022
1 parent 10d9fc5 commit 64cf6a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python_modules/libraries/dagster-aws/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ def get_version() -> str:
extras_require={
"redshift": ["psycopg2-binary"],
"pyspark": ["dagster-pyspark"],
"test": ["moto>=2.2.8", "requests-mock"],
"test": [
"moto>=2.2.8",
"requests-mock",
"xmltodict==0.12.0", # pinned until moto>=3.1.9 (https://github.com/spulec/moto/issues/5112)
],
},
zip_safe=False,
)

0 comments on commit 64cf6a2

Please sign in to comment.