Skip to content

Commit

Permalink
[python] fix regression in ready()
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Jan 23, 2025
1 parent 09c851a commit 01962a8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.8.5

- Fix regression in `ready()` function

## 2.8.4

- Add `access` parameter to `save()` to share files
Expand Down
2 changes: 1 addition & 1 deletion python/hal9/iobind.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def save(name, contents = None, hidden = False, files = None, encoding = None, a
Path(f"./{storage_path}/{name}.asset").write_text(asset_definition)

def ready():
with open(f"{storage_path}/.output", 'w') as file:
with open(f".storage/.output", 'w') as file:
file.write("")

def input(prompt = "", extract = False, messages = []):
Expand Down
1 change: 0 additions & 1 deletion python/messages.json

This file was deleted.

1 change: 0 additions & 1 deletion python/messages.pkl

This file was deleted.

2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hal9"
version = "2.8.4"
version = "2.8.5"
description = ""
authors = ["Javier Luraschi <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 01962a8

Please sign in to comment.