Skip to content

Commit

Permalink
Merge pull request #192 from edbeeching/fix-numpy
Browse files Browse the repository at this point in the history
Set numpy version, bump release
  • Loading branch information
edbeeching authored Jun 25, 2024
2 parents 89a0b5a + 2bd6139 commit d1ecffe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion godot_rl/wrappers/ray_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def rllib_training(args, extras):
checkpoint_freq=checkpoint_freq,
checkpoint_at_end=not args.eval,
restore=args.restore,
local_dir=os.path.abspath(args.experiment_dir) or os.path.abspath("logs/rllib"),
storage_path=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}"
),
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.8.0"
version = "0.8.1"
authors = [
{ name="Edward Beeching", email="edbeeching@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ classifiers =
[options]
packages = find:
install_requires =
numpy
numpy<2
tensorboard
wget
huggingface_hub>=0.10
Expand Down

0 comments on commit d1ecffe

Please sign in to comment.