Skip to content

Commit a3533f9

Browse files
author
Cyprien Ricque
committed
v0.0.4
1 parent ca04ba2 commit a3533f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ py-modules = ["stdflow"]
77

88
[project]
99
name = "stdflow"
10-
version = "0.0.3"
10+
version = "0.0.4"
1111
description = "[alpha] A package that transform your notebooks and python files into pipeline steps by standardizing the data input / output."
1212
readme = "README.md"
1313
authors = [

stdflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import pandas as pd
88

9-
__version__ = "0.0.3"
9+
__version__ = "0.0.4"
1010

1111
from stdflow.loaders import DataLoader
1212
from stdflow.step import GStep, Step

tests/old/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def test_exact_version():
5-
assert st.__version__ == "0.0.3"
5+
assert st.__version__ == "0.0.4"
66

77

88
def test_version():

0 commit comments

Comments
 (0)