File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Released
4
4
5
+ ### v0.1.3
6
+
7
+ - [x] Add built-in pipeline profiling feature.
8
+ - [x] ` forward ` method of ` pystream.Pipeline ` have default value: the flag to use input generator
9
+ - [x] Well-explained sample usage of the demo in ` .ipynb ` format.
10
+ - [x] Unit tests for staged pipeline operations.
11
+ - [x] Unit tests for functional pipeline operations.
12
+ - [x] Use logger instead of print
13
+ - [x] Specify stage name
14
+
5
15
### v0.1.2
6
16
7
17
- [x] Option to use blocking pipeline input for parallel pipeline.
29
39
30
40
## On-going
31
41
32
- ### v0.1.3
33
-
34
- - [x] Add built-in pipeline profiling feature.
35
- - [x] ` forward ` method of ` pystream.Pipeline ` have default value: the flag to use input generator
36
- - [x] Well-explained sample usage of the demo in ` .ipynb ` format.
37
- - [x] Unit tests for staged pipeline operations.
38
- - [x] Unit tests for functional pipeline operations.
39
- - [x] Use logger instead of print
40
- - [x] Specify stage name
41
-
42
42
### v0.1.4
43
43
44
44
- [ ] Interface unification of serial and parallel pipeline stages by adding a wrapper for the stages.
Original file line number Diff line number Diff line change 23
23
author = "Mukhlas Adib"
24
24
25
25
# The full version, including alpha/beta/rc tags
26
- release = "v0.1.2 "
26
+ release = "v0.1.3 "
27
27
28
28
29
29
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pystream-pipeline"
3
- version = " 0.1.2 "
3
+ version = " 0.1.3 "
4
4
description = " Python package to create and manage fast parallelized data processing pipeline for real-time application"
5
5
authors = [" Mukhlas Adib <adib.rasyidy@gmail.com>" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change 3
3
from pystream .pipeline .pipeline import Pipeline
4
4
from pystream .stage .stage import Stage
5
5
6
- __version__ = "0.1.2 "
6
+ __version__ = "0.1.3 "
7
7
8
8
logger = LOGGER
Original file line number Diff line number Diff line change 2
2
3
3
4
4
def test_version ():
5
- assert __version__ == "0.1.2 "
5
+ assert __version__ == "0.1.3 "
6
6
7
7
8
8
def test_import ():
You can’t perform that action at this time.
0 commit comments