Compare commits

...

6 Commits

Author SHA1 Message Date
Maxime Beauchemin
ca99cf1ca9 0.21.1 2017-12-09 00:05:46 -08:00
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 Bodley
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
4 changed files with 4 additions and 4 deletions

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)

View File

@@ -5,7 +5,7 @@ import subprocess
from setuptools import find_packages, setup
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
PACKAGE_DIR = os.path.join(BASE_DIR, 'superset', 'assets')
PACKAGE_DIR = os.path.join(BASE_DIR, 'superset', 'static', 'assets')
PACKAGE_FILE = os.path.join(PACKAGE_DIR, 'package.json')
with open(PACKAGE_FILE) as package_file:
version_string = json.load(package_file)['version']

View File

@@ -1,6 +1,6 @@
{
"name": "superset",
"version": "0.21.0dev",
"version": "0.21.1",
"description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
"license": "Apache-2.0",
"directories": {

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)