aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <jbocklage-ryannel@luxoft.com>2018-01-18 15:25:42 +0100
committerJuergen Bocklage-Ryannel <jbocklage-ryannel@luxoft.com>2018-01-18 15:25:42 +0100
commit98ace3df5005f25e486ea0174bbe870edbedd322 (patch)
tree230e023d74b7a0f2bf3d57d6f2c1a902e74e0e14
parent9051fa6ba9293b8ec662d9f4d98e338a0d886f70 (diff)
parenta6bdbe7c9352d7cb4956c6e251092ca41caee497 (diff)
Merge branch 'release/1.9.1'1.9.1
-rw-r--r--qface/__about__.py2
-rw-r--r--requirements.txt1
-rw-r--r--setup.py5
3 files changed, 5 insertions, 3 deletions
diff --git a/qface/__about__.py b/qface/__about__.py
index e3fb0a8..e63ff15 100644
--- a/qface/__about__.py
+++ b/qface/__about__.py
@@ -9,7 +9,7 @@ except NameError:
__title__ = "qface"
__summary__ = "A generator framework based on a common modern IDL"
__url__ = "https://pelagicore.github.io/qface/"
-__version__ = "1.9"
+__version__ = "1.9.1"
__author__ = "JRyannel"
__author_email__ = "qface-generator@googlegroups.com"
__copyright__ = "2019 Pelagicore"
diff --git a/requirements.txt b/requirements.txt
index dbbb4c7..be67b91 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,3 +10,4 @@ pytest
coverage
pytest-cov
six
+coloredlogs
diff --git a/setup.py b/setup.py
index 567f9e2..295c53e 100644
--- a/setup.py
+++ b/setup.py
@@ -44,14 +44,15 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
+ 'click',
+ 'antlr4-python3-runtime==4.7',
'jinja2',
'path.py',
'pyyaml',
- 'antlr4-python3-runtime==4.7',
'typing',
- 'click',
'watchdog',
'six',
+ 'coloredlogs',
],
extras_require={
'dev': [