Skip to content

Commit

Permalink
Pin to actual version and small helpful change
Browse files Browse the repository at this point in the history
  • Loading branch information
Quexington committed Jan 4, 2024
1 parent 41337c5 commit 906c92c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions hsms/clvm_serde/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ def de(p: Program) -> Tuple[Any, ...]:
while todo:
des = todo.pop()
if todo:
v = p.pair[0]
p = p.pair[1]
v = Program.to(p.pair[0])
p = Program.to(p.pair[1])
else:
v = p
args.append(des(v))
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ license = { file = "LICENSE" }
readme = "README.md"
dependencies = [
"segno==1.4.1",
"chia_base @ git+https://github.com/richardkiss/chia_base@91d9dba09e316714cf4bc86505587437fe442e48#egg=chia_base",
"chialisp_puzzles @ git+https://github.com/richardkiss/chialisp_puzzles@eb97cd844b094e6dcd595b5bd6522d3a78eb692c#egg=chialisp_puzzles",
"chia_base==0.1.4",
"chialisp_puzzles==0.1.1",
]
# version is defined with `setuptools_scm`
dynamic = ["version"]
Expand Down

0 comments on commit 906c92c

Please sign in to comment.