Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yangky11 committed Aug 29, 2024
1 parent dfb5f31 commit 9f4d398
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
project = "LeanDojo"
copyright = "2023, LeanDojo Team"
author = "Kaiyu Yang"
release = "2.1.2"
release = "2.1.3"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude = [

[project]
name = "lean-dojo"
version = "2.1.2"
version = "2.1.3"
authors = [
{ name="Kaiyu Yang", email="kaiyuy@meta.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/lean_dojo/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

load_dotenv()

__version__ = "2.1.2"
__version__ = "2.1.3"

logger.remove()
if "VERBOSE" in os.environ or "DEBUG" in os.environ:
Expand Down
2 changes: 1 addition & 1 deletion src/lean_dojo/interaction/dojo.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ def __enter__(self) -> Tuple["Dojo", State]:

assert res["error"] is None

# logger.debug(f"Response: {res}")
if self.uses_tactics:
assert res["tacticState"] != "no goals"
init_state: State = TacticState(
Expand Down Expand Up @@ -388,6 +387,7 @@ def _submit_request(self, req: str) -> Dict[str, Any]:
raise DojoCrashError(f"Invalid JSON: {res}")

result["message"] = msg
logger.debug(result)
return result

def _check_alive(self) -> None:
Expand Down

0 comments on commit 9f4d398

Please sign in to comment.