Skip to content

Commit

Permalink
upgrading pyyaml
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmer05 committed Jul 18, 2023
1 parent c8c4581 commit 00af115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paasta_tools/cli/cmds/spark_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ def paasta_spark_run(args):
document = POD_TEMPLATE.format(
spark_pod_label=limit_size_with_hash(f"exec-{app_base_name}"),
)
parsed_pod_template = yaml.load(document)
parsed_pod_template = yaml.full_load(document)
with open(pod_template_path, "w") as f:
yaml.dump(parsed_pod_template, f)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ python-iptables==1.0.1
python-utils==2.0.1
pytimeparse==1.1.5
pytz==2016.10
pyyaml==5.4.1
pyyaml==6.0
repoze.lru==0.6
requests==2.25.0
requests-cache==0.6.3
Expand Down

0 comments on commit 00af115

Please sign in to comment.