Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.7.0 #171

Merged
merged 2 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading