Skip to content

Commit 237c33f

Browse files
committed
another test commit to testpypi for testing installation via pip
1 parent 6b6cc90 commit 237c33f

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/publish.yml

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

33
on:
4-
release:
5-
types:
6-
- created
4+
push:
5+
branches: [ dev/jan ]
76

87
jobs:
98
publish:

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.3'
14+
__version__ = '0.0.4'

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.3"
3+
version = "0.0.4"
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.3',
42+
version='0.0.4',
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.3'
5+
assert __version__ == '0.0.4'

0 commit comments

Comments
 (0)