Skip to content

Commit

Permalink
version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hazbottles committed Nov 2, 2020
1 parent bb0d256 commit d088c21
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion flonb/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
from .task import task_func, Task, set_cache_dir, Dep, DynamicDep # noqa: F401
from .task import task_func, set_cache_dir, Dep, DynamicDep # noqa: F401

__version__ = "0.1.0" # make sure to also update in ../setup.py

__all__ = ["task_func", "set_cache_dir", "Dep", "DynamicDep", "__version__"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="flonb",
version="0.0.1",
version="0.1.0", # make sure to also update in ./flonb/__init__.py
author="hazbottles",
description="Rapid-iteration data pipelines with automagic caching + parameter passing.",
long_description=long_description,
Expand Down

0 comments on commit d088c21

Please sign in to comment.