We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303518b commit c40523fCopy full SHA for c40523f
pyproject.toml
@@ -7,7 +7,7 @@ py-modules = ["stdflow"]
7
8
[project]
9
name = "stdflow"
10
-version = "0.0.6"
+version = "0.0.7"
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
@@ -10,7 +10,7 @@
import pandas as pd
-__version__ = "0.0.6"
+__version__ = "0.0.7"
14
15
import logging
16
import sys
tests/old/test_version.py
@@ -2,7 +2,7 @@
2
3
4
def test_exact_version():
5
- assert st.__version__ == "0.0.6"
+ assert st.__version__ == "0.0.7"
6
def test_version():
0 commit comments