From 5402717f261fff397499a1f29c8f827292f7b3c5 Mon Sep 17 00:00:00 2001 From: Dan Blanchard Date: Mon, 21 Mar 2016 22:19:01 -0400 Subject: [PATCH 1/2] Require at least pystorm 2.0.1 for streamparse, so people are getting bugfixes on that end. --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index ff02bea1..6580edee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,5 +5,5 @@ requests prettytable setuptools simplejson -pystorm +pystorm>=2.0.1 thriftpy>=0.3.2 diff --git a/setup.py b/setup.py index 21046c8c..a360b1a8 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def readme(): 'prettytable', 'six>=1.5', 'simplejson', - 'pystorm', + 'pystorm>=2.0.1', 'thriftpy>=0.3.2' ] From da5c0f62996cbec23b56d721805397ecd7c6e70a Mon Sep 17 00:00:00 2001 From: Dan Blanchard Date: Mon, 21 Mar 2016 22:19:22 -0400 Subject: [PATCH 2/2] Bump version up to 3.0.0.dev2 --- streamparse/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamparse/version.py b/streamparse/version.py index ad580eb2..7ec0433c 100644 --- a/streamparse/version.py +++ b/streamparse/version.py @@ -29,5 +29,5 @@ def _safe_int(string): return string -__version__ = '3.0.0.dev1' +__version__ = '3.0.0.dev2' VERSION = tuple(_safe_int(x) for x in __version__.split('.'))