Skip to content

Commit c40523f

Browse files
author
Cyprien Ricque
committed
0.0.7
1 parent 303518b commit c40523f

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.6"
10+
version = "0.0.7"
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
@@ -10,7 +10,7 @@
1010

1111
import pandas as pd
1212

13-
__version__ = "0.0.6"
13+
__version__ = "0.0.7"
1414

1515
import logging
1616
import sys

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.6"
5+
assert st.__version__ == "0.0.7"
66

77

88
def test_version():

0 commit comments

Comments
 (0)