Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jintao-Huang committed Oct 6, 2022
1 parent fa28194 commit c34dc26
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
2. Download the latest version (>=1.12) of Torch(corresponding CUDA version) from the [official website](https://pytorch.org/get-started/locally/) of Torch. It is not recommended to automatically install Torch (CUDA 10.2 default) using the Mini-Lightning dependency, which will cause CUDA version mismatch.
3. Install mini-lightning
```bash
# from pypi (v0.1.2)
# from pypi (v0.1.3)
pip install mini-lightning

# Or download the files from the repository to local,
Expand Down
2 changes: 1 addition & 1 deletion examples/dqn.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""


RENDER_MODE: Literal["human", None] = None
RENDER_MODE: Literal["human", None] = "human"
RUNS_DIR = os.path.join(RUNS_DIR, "dqn")
os.makedirs(RUNS_DIR, exist_ok=True)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def read_file(path: str) -> str:
]
setup(
name="mini-lightning",
version="0.2.0",
version="0.1.3",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit c34dc26

Please sign in to comment.