Skip to content

Commit 22a4939

Browse files
committed
added init to find run_exp
1 parent c25e69b commit 22a4939

File tree

6 files changed

+20
-4
lines changed

6 files changed

+20
-4
lines changed

Diff for: .github/workflows/publish.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Build and Publish
22

33
on:
4+
push:
5+
branches: [ dev/jan ]
46
release:
57
types:
68
- created # see https://docs.github.com/en/rest/reference/repos#create-a-release and https://docs.github.com/en/actions/reference/events-that-trigger-workflows#release

Diff for: __init__.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from gym.envs.registration import register
2+
3+
register(
4+
id='RLToy-v0',
5+
entry_point='mdp_playground.envs:RLToyEnv',
6+
)
7+
8+
register(
9+
id='RLToyFiniteHorizon-v0',
10+
entry_point='mdp_playground.envs:RLToyEnv',
11+
max_episode_steps=100,
12+
)
13+
14+
__version__ = '0.0.6'

Diff for: mdp_playground/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
max_episode_steps=100,
1212
)
1313

14-
__version__ = '0.0.5'
14+
__version__ = '0.0.6'

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mdp_playground"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = "A python package to design and debug RL agents"
55
readme = "README.md"
66
homepage = "https://automl.github.io/mdp-playground"

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
setup(
4141
name='mdp-playground',
42-
version='0.0.5',
42+
version='0.0.6',
4343
author=AUTHORS,
4444
author_email=AUTHOR_EMAIL,
4545
description="A python package to design and debug RL agents",

Diff for: tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '0.0.5'
5+
assert __version__ == '0.0.6'

0 commit comments

Comments
 (0)