Skip to content

Commit

Permalink
[MAINTENANCE] Bump Marshmallow upper bound to work with Airflow ope…
Browse files Browse the repository at this point in the history
…rator (#5952)
  • Loading branch information
cdkini committed Sep 8, 2022
1 parent 6a50e3f commit 4169a94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion great_expectations/render/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ def clean_null_attrs(self, data: dict, **kwargs: dict) -> dict:
their values are None."""
data = deepcopy(data)
for key in RenderedAtomicValueSchema.REMOVE_KEYS_IF_NONE:
if key == "graph" and key in data and data[key].graph is None:
if key == "graph" and key in data and data[key]["graph"] is None:
data.pop(key)
elif key in data and data[key] is None:
data.pop(key)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jinja2>=2.10
jsonpatch>=1.22
jsonschema>=2.5.1
makefun>=1.7.0,<2
marshmallow>=3.7.1,<3.9.0
marshmallow>=3.7.1,<4.0.0
mistune>=0.8.4
nbformat>=5.0
notebook>=6.4.10
Expand Down

0 comments on commit 4169a94

Please sign in to comment.