We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca04ba2 commit a3533f9Copy full SHA for a3533f9
pyproject.toml
@@ -7,7 +7,7 @@ py-modules = ["stdflow"]
7
8
[project]
9
name = "stdflow"
10
-version = "0.0.3"
+version = "0.0.4"
11
description = "[alpha] A package that transform your notebooks and python files into pipeline steps by standardizing the data input / output."
12
readme = "README.md"
13
authors = [
stdflow/__init__.py
@@ -6,7 +6,7 @@
6
import pandas as pd
-__version__ = "0.0.3"
+__version__ = "0.0.4"
from stdflow.loaders import DataLoader
from stdflow.step import GStep, Step
tests/old/test_version.py
@@ -2,7 +2,7 @@
2
3
4
def test_exact_version():
5
- assert st.__version__ == "0.0.3"
+ assert st.__version__ == "0.0.4"
def test_version():
0 commit comments