Skip to content

Commit

Permalink
bumped version numbers to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Schonfeld committed Nov 20, 2019
1 parent 21c1575 commit 626004e
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,8 @@ Changelog
* Correlations Pearson Matrix filters
* "name" display in title tab
* "Heat Map" toggle
* dropped unused "Flask-Caching" requirement
* dropped unused "Flask-Caching" requirement

### 1.4.1 (2019-11-20)

* [#32](https://github.com/man-group/dtale/issues/32): unpin jsonschema by moving flasgger to `extras_require`
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ source ~/pyenvs/dtale/bin/activate
# install dtale egg (important to use the "--upgrade" every time you install so it will grab the latest version)
$ pip install --upgrade dtale
```
Now you will have to ability to use D-Tale from the command-line or within a python-enabled terminal (**FYI: Due a dependency on Flasgger, jsonschema is limited to version <3.0.0**)
Now you will have to ability to use D-Tale from the command-line or within a python-enabled terminal

### Command-line
Base CLI options (run `dtale --help` to see all options available)
Expand Down
2 changes: 1 addition & 1 deletion docker/2_7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ WORKDIR /app

RUN set -eux \
; . /root/.bashrc \
; easy_install dtale-1.4.0-py2.7.egg
; easy_install dtale-1.4.1-py2.7.egg
2 changes: 1 addition & 1 deletion docker/3_6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ WORKDIR /app

RUN set -eux \
; . /root/.bashrc \
; easy_install dtale-1.4.0-py3.7.egg
; easy_install dtale-1.4.1-py3.7.egg
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.4.0'
version = u'1.4.1'
# The full version, including alpha/beta/rc tags.
release = u'1.4.0'
release = u'1.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 1 addition & 2 deletions dtale/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,7 @@ def build_app(reaper_on=True, hide_shutdown=False):
from flasgger import Swagger # flake8: NOQA
Swagger(app, template=template)
except ImportError:
import warnings
warnings.warn('flasgger dependency not found, please install to enable feature')
logger.debug('flasgger dependency not found, please install to enable feature')

@app.route('/')
@app.route('/dtale')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dtale",
"version": "1.4.0",
"version": "1.4.1",
"description": "All-purpose Data Viewer",
"main": "main.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def run_tests(self):

setup(
name="dtale",
version="1.4.0",
version="1.4.1",
author="MAN Alpha Technology",
author_email="ManAlphaTech@man.com",
description="Web Client for Visualizing Pandas Objects",
Expand Down

0 comments on commit 626004e

Please # to comment.