Skip to content

Commit

Permalink
version bump and add docs on the actual build command
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneT2000 committed Sep 22, 2023
1 parent bff9cf1 commit 493be36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ After you make changes, be sure to add any necessary tests to cover any new code
coverage run --source=mani_skill2/ -a -m pytest tests # run tests
coverage html --include=mani_skill2/**/*.py # see the test coverage results
```


## Building

Adapted from https://packaging.python.org/en/latest/tutorials/packaging-projects/. For some reason running build directly does not work, you have to pass in -s and -w.

```
python3 -m build -s -w
python3 -m twine upload --repository testpypi dist/*
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read_requirements():

setup(
name="mani_skill2",
version="0.5.2",
version="0.5.3",
description="ManiSkill2: A Unified Benchmark for Generalizable Manipulation Skills",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 493be36

Please sign in to comment.