Skip to content

Commit 0601239

Browse files
committed
Use yaml.safe_load() to fix deprecation and crash
The `yaml.load()` function without a `Loader` keyword is deprecated since `pyyaml 5.1` and removed with `pyyaml 6.0`. Ubuntu 24.04 noble ships with `pyyaml 6.0.1` breaking `python-aptly` and `aptly-publisher`. Fix it by using the recommended `yaml.safe_load()` function. Fixes: tcpcloud#32
1 parent d9f07ca commit 0601239

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aptly/publisher/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
def load_publish(publish):
1515
with open(publish, 'r') as publish_file:
16-
return yaml.load(publish_file)
16+
return yaml.safe_load(publish_file)
1717

1818

1919
class PublishManager(object):

aptly/publisher/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
def load_config(config):
2222
with open(config, 'r') as fh:
23-
return yaml.load(fh)
23+
return yaml.safe_load(fh)
2424

2525

2626
def get_latest_snapshot(snapshots, name):

0 commit comments

Comments
 (0)