diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 06656fbc..ba51d096 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -35,11 +35,11 @@ jobs: - name: Make distribution run: | - pip install twine + pip install twine wheel python setup.py sdist bdist_wheel twine check dist/* - name: Publish a Python distribution to PyPI uses: pypa/gh-action-pypi-publish@master with: user: __token__ - password: ${{ secrets.PYPI_TOKEN }} \ No newline at end of file + password: ${{ secrets.PYPI_TOKEN }} diff --git a/CHANGES.rst b/CHANGES.rst index 16779e19..caa0b4bd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,11 @@ Release notes ============= +Version 0.3.8, July 2020 +------------------------ +* Fixing automated `PyPi` deployment. +* Removing enabling of unnecessary notebook extensions. + Version 0.3.7, July 2020 ------------------------ * Using ``ING``'s matplotlib style for the report plots (orange plots). diff --git a/docs/source/readme.rst b/docs/source/readme.rst index 5ce42691..4536d0ca 100644 --- a/docs/source/readme.rst +++ b/docs/source/readme.rst @@ -4,7 +4,7 @@ Population Shift Monitoring |build| |docs| -* Version: 0.3.7. Released: July 2020 +* Version: 0.3.8. Released: July 2020 * Documentation: https://popmon.readthedocs.io * Repository: https://github.com/ing-bank/popmon * Authors: ING Wholesale Banking Advanced Analytics diff --git a/popmon/notebooks/popmon_tutorial_advanced.ipynb b/popmon/notebooks/popmon_tutorial_advanced.ipynb index 29a8fc8c..9c5c20dd 100644 --- a/popmon/notebooks/popmon_tutorial_advanced.ipynb +++ b/popmon/notebooks/popmon_tutorial_advanced.ipynb @@ -1,16 +1,5 @@ { "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2\n", - "%matplotlib inline" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/popmon/notebooks/popmon_tutorial_basic.ipynb b/popmon/notebooks/popmon_tutorial_basic.ipynb index d4a0a8ff..cdbc4536 100644 --- a/popmon/notebooks/popmon_tutorial_basic.ipynb +++ b/popmon/notebooks/popmon_tutorial_basic.ipynb @@ -1,16 +1,5 @@ { "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2\n", - "%matplotlib inline" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/popmon/notebooks/popmon_tutorial_incremental_data.ipynb b/popmon/notebooks/popmon_tutorial_incremental_data.ipynb index 344d8281..74467f2f 100644 --- a/popmon/notebooks/popmon_tutorial_incremental_data.ipynb +++ b/popmon/notebooks/popmon_tutorial_incremental_data.ipynb @@ -1,16 +1,5 @@ { "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2\n", - "%matplotlib inline" - ] - }, { "cell_type": "markdown", "metadata": {}, diff --git a/popmon/version.py b/popmon/version.py index ef7b7ce3..7c15638b 100644 --- a/popmon/version.py +++ b/popmon/version.py @@ -1,6 +1,6 @@ """THIS FILE IS AUTO-GENERATED BY SETUP.PY.""" name = "popmon" -version = "0.3.7" -full_version = "0.3.7" +version = "0.3.8" +full_version = "0.3.8" release = True diff --git a/popmon/visualization/templates/assets/js/custom-script.js b/popmon/visualization/templates/assets/js/custom-script.js index 450dfded..4b3f2f86 100644 --- a/popmon/visualization/templates/assets/js/custom-script.js +++ b/popmon/visualization/templates/assets/js/custom-script.js @@ -7,7 +7,7 @@ $(document).on("click", "button.dropdown-item", function() { obj = $(this) obj.closest("section").find("div.section_feature").hide() obj.closest("section").find("div[data-section-feature='" + obj.attr("data-feature") + "']").show() - obj.parent().siblings("button").text("Feature: " + obj.text()()) + obj.parent().siblings("button").text("Feature: " + obj.text()) }); // making navigation work: after clicking a nav link scrolling to the corresponding section's position $(document).on("click", "a.nav-link", function(e) { diff --git a/setup.py b/setup.py index 7c627576..79053f9e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ MAJOR = 0 REVISION = 3 -PATCH = 7 +PATCH = 8 DEV = False # NOTE: also update version at: README.rst