Skip to content

Commit

Permalink
Merge pull request #171 from edbeeching/release-0.7.0
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
edbeeching authored Feb 2, 2024
2 parents 39960d8 + 75fafe4 commit 556c178
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion godot_rl/core/godot_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class GodotEnv:
MAJOR_VERSION = "0" # Versioning for the environment
MINOR_VERSION = "4"
MINOR_VERSION = "7"
DEFAULT_PORT = 11008 # Default port for communication with Godot Game
DEFAULT_TIMEOUT = 60 # Default socket timeout TODO

Expand Down
6 changes: 3 additions & 3 deletions godot_rl/wrappers/ray_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ def rllib_training(args, extras):
checkpoint_at_end=not args.eval,
restore=args.restore,
local_dir=os.path.abspath(args.experiment_dir) or os.path.abspath("logs/rllib"),
trial_name_creator=lambda trial: f"{args.experiment_name}"
if args.experiment_name
else f"{trial.trainable_name}_{trial.trial_id}",
trial_name_creator=lambda trial: (
f"{args.experiment_name}" if args.experiment_name else f"{trial.trainable_name}_{trial.trial_id}"
),
)
if args.export:
raise NotImplementedError("Exporting is not (re)implemented yet")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "godot_rl"
version = "0.6.2"
version = "0.7.0"
authors = [
{ name="Edward Beeching", email="edbeeching@gmail.com" },
]
Expand Down
1 change: 0 additions & 1 deletion tests/benchmark_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
we perform 10,000 actions and calculate the interactions per second in a variety of configurations
"""


import time

from godot_rl.core.godot_env import GodotEnv
Expand Down

0 comments on commit 556c178

Please sign in to comment.