diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-03-14 16:46:56 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-03-14 16:46:56 +0000 |
commit | d030d2d2d5be1ee2ec8b4a1939da9ea4cf4506d5 (patch) | |
tree | 897a0e92099e66870001ab60279432f1b9af85fb | |
parent | 5d75bea2d1ddd4fc490a5df4953b071f40aff180 (diff) |
fix for error in last version to match bcompiler-engine
-rw-r--r-- | datamaps/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/datamaps/__init__.py b/datamaps/__init__.py index 7863915..976498a 100644 --- a/datamaps/__init__.py +++ b/datamaps/__init__.py @@ -1 +1 @@ -__version__ = "1.0.2" +__version__ = "1.0.3" @@ -36,6 +36,6 @@ setup( install_requires=[ 'click', 'python-dateutil', - 'bcompiler-engine>=1.0.2' + 'bcompiler-engine>=1.0.3' ], test_suite='datamaps.tests') |