Skip to content

Commit

Permalink
undyped_gen: remove pyaml dependency
Browse files Browse the repository at this point in the history
We only need the yaml part, and `pyaml` (Pretty Yaml) has been removed
from sel4-deps in sel4-deps 0.4.0. Instead sel4-deps now has `pyyaml`,
which only provides the `yaml` import.

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jul 11, 2024
1 parent 8caade9 commit 024c82a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@

### Changes

* remove `pyaml` python dependency and use `pyyaml` (import `yaml`) directly.

### Upgrade Notes

---

## 0.3 2024-07-01
Expand Down
2 changes: 1 addition & 1 deletion cdl_utils/untyped_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from collections import namedtuple, deque, defaultdict

from elftools.elf.elffile import ELFFile
from pyaml import yaml
import yaml
from sortedcontainers import SortedList

from capdl import register_object_sizes
Expand Down

0 comments on commit 024c82a

Please sign in to comment.