Skip to content

Commit b15f499

Browse files
authored
Merge pull request #55 from dfki-ric/doc/update-readme
Update readme
2 parents d71f752 + 3c7475a commit b15f499

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

.github/workflows/test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Tests
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [main, development]
99
pull_request:
10-
branches: [ main ]
10+
branches: [main, development]
1111

1212
jobs:
1313
build:
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2020

2121
steps:
2222
- uses: actions/checkout@v3

README.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
44
# DeformableGym
55

6-
This repository contains a collection of [gymnasium](https://github.com/Farama-Foundation/Gymnasium) environments built with [PyBullet](https://pybullet.org/). In these environments, the agent
7-
needs to learn to grasp deformable object such as shoe insoles or pillows from sparse reward signals.
6+
This repository contains a collection of [gymnasium](https://github.com/Farama-Foundation/Gymnasium) environments built with [PyBullet](https://pybullet.org/) and [MuJoCo](https://github.com/google-deepmind/mujoco).
7+
In these environments, the agent needs to learn to grasp deformable 3D objects such as shoe insoles or pillows from sparse reward signals.
88

99
<p align="center">
1010
<img src="doc/source/_static/defgym.svg"/>
@@ -23,6 +23,22 @@ After cloning the repository, it is recommended to install the library in editab
2323
pip install -e .
2424
```
2525

26+
## Available environments
27+
28+
| Environment Name | PyBullet | MuJoCo |
29+
|---------------------------|:-------------------:|:------------------:|
30+
| FloatingMiaGraspInsole | :heavy_check_mark: | :heavy_check_mark: |
31+
| FloatingShadowGraspInsole | :heavy_check_mark: | :heavy_check_mark: |
32+
| FloatingMiaGraspPillow | :heavy_check_mark: | :x: |
33+
| FloatingShadowGraspInsole | :heavy_check_mark: | :x: |
34+
| URMiaGraspInsole | :heavy_check_mark: | :x: |
35+
| URShadowGraspInsole | :heavy_check_mark: | :x: |
36+
| URMiaGraspPillow | :heavy_check_mark: | :x: |
37+
| URShadowGraspPillow | :heavy_check_mark: | :x: |
38+
39+
40+
41+
2642
### Known Issues
2743

2844
If you use conda, you may experience the error below:
@@ -100,7 +116,7 @@ pip install numpydoc sphinx sphinx-gallery sphinx-bootstrap-theme
100116

101117
If you wish to report bugs, please use the [issue tracker](https://github.com/dfki-ric/deformable_gym/issues). If you would like to contribute to DeformableGym, just open an issue or a
102118
[pull request](https://github.com/dfki-ric/deformable_gym/pulls). The target branch for
103-
merge requests is the development branch. The development branch will be merged to master for new releases. If you have
119+
merge requests is the development branch. The development branch will be merged to main for new releases. If you have
104120
questions about the software, you should ask them in the discussion section.
105121

106122
The recommended workflow to add a new feature, add documentation, or fix a bug is the following:
@@ -133,7 +149,7 @@ url = {https://deformable-workshop.github.io/icra2023/},
133149

134150
### Semantic Versioning
135151

136-
Semantic versioning must be used, that is, the major version number will be
152+
[Semantic versioning](https://semver.org/) must be used, that is, the major version number will be
137153
incremented when the API changes in a backwards incompatible way, the minor
138154
version will be incremented when new functionality is added in a backwards
139155
compatible manner, and the patch version is incremented for bugfixes,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="deformable_gym",
9-
version="0.4.0",
9+
version="0.4.1",
1010
maintainer="Melvin Laux",
1111
maintainer_email="[email protected]",
1212
description="Gym environments for grasping deformable objects",

0 commit comments

Comments
 (0)