Skip to content

Commit bca0ccc

Browse files
committed
version bump, deploy for pypi test
1 parent 4ddf94f commit bca0ccc

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.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

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.4'
14+
__version__ = '0.0.5'

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.4"
3+
version = "0.0.5"
44
description = "A python package to design and debug RL agents"
55
readme = "README.md"
66
homepage = "https://automl.github.io/mdp-playground"

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.4',
42+
version='0.0.5',
4343
author=AUTHORS,
4444
author_email=AUTHOR_EMAIL,
4545
description="A python package to design and debug RL agents",

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.4'
5+
assert __version__ == '0.0.5'

0 commit comments

Comments
 (0)