From 1ef862df03907939413767b15ac46d9034392f01 Mon Sep 17 00:00:00 2001 From: yumiguan <41277086+yumiguan@users.noreply.github.com> Date: Wed, 14 Nov 2018 20:45:44 +0800 Subject: [PATCH] v0.14.1 - Bugfix/add requirements (#53) * add requirements flask-sqlalchemy * add version name --- lyrebird/version.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lyrebird/version.py b/lyrebird/version.py index 46de3edc2..1144bbab9 100644 --- a/lyrebird/version.py +++ b/lyrebird/version.py @@ -1,3 +1,3 @@ -IVERSION = (0, 14, 0) +IVERSION = (0, 14, 1) VERSION = ".".join(str(i) for i in IVERSION) LYREBIRD = "Lyrebird " + VERSION diff --git a/setup.py b/setup.py index 5d54db0d7..f51945b32 100644 --- a/setup.py +++ b/setup.py @@ -44,5 +44,6 @@ 'beautifulsoup4', 'portpicker', 'colorama', - 'packaging' + 'packaging', + 'Flask-SQLAlchemy' ])