Skip to content

Commit

Permalink
Merge branch 'release/v0.3.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcis committed Jul 9, 2020
2 parents 4f7b33e + 0c916f7 commit 7bd287a
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 40 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Expand Up @@ -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 }}
password: ${{ secrets.PYPI_TOKEN }}
5 changes: 5 additions & 0 deletions CHANGES.rst
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion docs/source/readme.rst
Expand Up @@ -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
Expand Down
11 changes: 0 additions & 11 deletions 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,
Expand Down
11 changes: 0 additions & 11 deletions 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,
Expand Down
11 changes: 0 additions & 11 deletions 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": {},
Expand Down
4 changes: 2 additions & 2 deletions 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
2 changes: 1 addition & 1 deletion popmon/visualization/templates/assets/js/custom-script.js
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@

MAJOR = 0
REVISION = 3
PATCH = 7
PATCH = 8
DEV = False
# NOTE: also update version at: README.rst

Expand Down

0 comments on commit 7bd287a

Please sign in to comment.