Skip to content

Commit

Permalink
Bumps version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semitable committed Jul 22, 2024
1 parent 91e27fe commit 14fbf1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE)

> [!CAUTION]
> The RWARE environment was updated to support the new [Gymnasium](https://gymnasium.farama.org/) interface in replacement of the deprecated `gym=0.21` dependency. For backwards compatibility, please see [Gymnasium compatibility documentation](https://gymnasium.farama.org/content/gym_compatibility/) or use version v1.0.3 of the repository. The main changes to the interface are as follows:
> The RWARE environment was updated to support the new [Gymnasium](https://gymnasium.farama.org/) interface in replacement of the deprecated `gym=0.21` dependency (many thanks @LukasSchaefer). For backwards compatibility, please see [Gymnasium compatibility documentation](https://gymnasium.farama.org/content/gym_compatibility/) or use version v1.0.3 of the repository. The main changes to the interface are as follows:
> - `obss = env.reset()` --> `obss, info = env.reset()`
> - `obss, rewards, dones, info = env.step(actions)` --> `obss, rewards, done, truncated, info = env.step(actions)`
> - `done` is given as single boolean value instead of one `bool` value per agent
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@

setup(
name="rware",
version="1.1.0",
version="2.0.0",
description="Multi-Robot Warehouse environment for reinforcement learning",
long_description=README,
long_description_content_type="text/markdown",
author="Filippos Christianos",
url="https://github.com/semitable/robotic-warehouse",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
classifiers=[
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 14fbf1e

Please sign in to comment.