Compare commits

...
Author SHA1 Message Date
Maxime Beauchemin 39d9632843 0.21.0 2017-12-08 01:11:05 -08:00
Maxime Beauchemin 53b908322f Merge branch 'master' into 0.21 2017-12-08 00:49:47 -08:00
Maxime Beauchemin b90a910936 0.21.0rc2 2017-11-20 09:18:45 -08:00
John BodleyandMaxime Beauchemin 459ca55d6d [flake8] Resolving Q??? errors (#3847)
(cherry picked from commit ac57780607)
2017-11-20 09:17:23 -08:00
Maxime Beauchemin 8e307a3e4d 0.21.0rc1 2017-11-17 09:33:16 -08:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
Superset
=========
==========
[![Build Status](https://travis-ci.org/apache/incubator-superset.svg?branch=master)](https://travis-ci.org/apache/incubator-superset)
[![PyPI version](https://badge.fury.io/py/superset.svg)](https://badge.fury.io/py/superset)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "superset",
"version": "0.21.0dev",
"version": "0.21.0",
"description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
"license": "Apache-2.0",
"directories": {
+1 -1
View File
@@ -472,7 +472,7 @@ class SqlaTable(Model, BaseDatasource):
# For backwards compatibility and edge cases
# where a column data type might have changed
if isinstance(v, basestring):
v = v.strip("'").strip('"')
v = v.strip(""").strip(""")
if col_obj.is_num:
v = utils.string_to_num(v)