You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2020/04/10 17:50:32 UTC

[incubator-superset] branch master updated (5ec0192 -> a8ce3bc)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 5ec0192  fix: add lineWidth to Shared_DeckGL.jsx (#9496)
     add a8ce3bc  feat: Add post processing to QueryObject (#9427)

No new revisions were added by this update.

Summary of changes:
 requirements.txt                        |   2 +-
 setup.py                                |   2 +-
 superset/common/query_context.py        |   9 +-
 superset/common/query_object.py         |  40 +++-
 superset/exceptions.py                  |   4 +
 superset/utils/pandas_postprocessing.py | 389 ++++++++++++++++++++++++++++++++
 tests/core_tests.py                     |  54 ++++-
 tests/fixtures/dataframes.py            | 121 ++++++++++
 tests/pandas_postprocessing_tests.py    | 290 ++++++++++++++++++++++++
 9 files changed, 899 insertions(+), 12 deletions(-)
 create mode 100644 superset/utils/pandas_postprocessing.py
 create mode 100644 tests/fixtures/dataframes.py
 create mode 100644 tests/pandas_postprocessing_tests.py