diff --git a/requirements/dev.in b/requirements/dev.in index bd9240a..903aa9a 100644 --- a/requirements/dev.in +++ b/requirements/dev.in @@ -18,4 +18,5 @@ pyyaml>=4.2b1 pandas==0.23.4 urllib3>=1.24.2 sqlalchemy>=1.3.0 -jinja2>=2.10.1 \ No newline at end of file +jinja2>=2.10.1 +parso>=0.5.0 diff --git a/requirements/dev.txt b/requirements/dev.txt index ac32138..cc1e587 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -9,6 +9,7 @@ alembic==1.0.10 # via flask-migrate amqp==2.4.2 # via kombu apispec[yaml]==1.3.3 # via flask-appbuilder appdirs==1.4.3 # via black +appnope==0.1.0 # via ipython asn1crypto==0.24.0 # via cryptography astroid==2.2.5 # via pylint, pylint-flask atomicwrites==1.3.0 # via pytest @@ -84,7 +85,7 @@ numpy==1.16.3 # via pandas openpyxl==2.4.11 # via tabulator pandas==0.23.4 parsedatetime==2.4 # via superset -parso==0.4.0 # via jedi +parso==0.5.0 pathlib2==2.3.3 # via superset pep8==1.7.1 pexpect==4.7.0 # via ipython diff --git a/superset_patchup/__init__.py b/superset_patchup/__init__.py index 0f5f918..5bf8d1d 100644 --- a/superset_patchup/__init__.py +++ b/superset_patchup/__init__.py @@ -1,5 +1,5 @@ """ Main init file for superset_patchup """ -VERSION = (0, 1, 3) +VERSION = (0, 1, 4) __version__ = ".".join(str(v) for v in VERSION)