Skip to content

Commit c5f21ac

Browse files
authored
Merge pull request #135 from ing-bank/develop
v0.4.2
2 parents 8ffbb32 + 0ee5019 commit c5f21ac

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

.github/workflows/license.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- name: Set up Golang
2020
uses: actions/setup-go@v2
21+
with:
22+
go-version: '^1.16' # See https://github.com/google/go-licenses/issues/75
2123
- name: Install addlicense
2224
run: |
2325
export PATH=${PATH}:`go env GOPATH`/bin
2426
go get -v -u github.com/google/addlicense
2527
- name: Check license
2628
run: |
2729
export PATH=${PATH}:`go env GOPATH`/bin
28-
addlicense -check -l mit -c "ING Wholesale Banking Advanced Analytics" $(find popmon/ -type f -name '*.py' -not -path popmon/version.py)
30+
addlicense -check -l mit -c "ING Wholesale Banking Advanced Analytics" $(find popmon/ -type f -name '*.py' -not -path popmon/version.py)

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Release notes
2+
## [Version 0.4.2](https://github.com/ing-bank/popmon/compare/v0.4.1...v0.4.2) (2021-08-25)
3+
4+
### ⬆️ Dependencies
5+
6+
* Pin ing-matplotlib-theme dependency to >=0.1.8 (closes #131) ([1bca302b20f2434a8ea0dea195e974d3b2ed3da3](https://github.com/ing-bank/popmon/commit/1bca302b20f2434a8ea0dea195e974d3b2ed3da3))
7+
28
## [Version 0.4.1](https://github.com/ing-bank/popmon/compare/v0.4.0...v0.4.1) (2021-06-23)
39

410

popmon/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""THIS FILE IS AUTO-GENERATED BY SETUP.PY."""
22

33
name = "popmon"
4-
version = "0.4.1"
5-
full_version = "0.4.1"
4+
version = "0.4.2"
5+
full_version = "0.4.2"
66
release = True

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest>=4.0.2
22
git+https://github.com/pytest-dev/pluggy.git
33
pytest-notebook>=0.6.1
4-
jupyter_client>=5.2.3
4+
jupyter_client>=5.2.3,<7
55
ipykernel>=5.1.3
66
pre-commit>=2.9.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ matplotlib>=2.2.3
99
joblib>=0.14.0
1010
pybase64>=1.0.1
1111
htmlmin
12-
ing_theme_matplotlib @ git+https://gitlab.com/ing_rpaa/ing_theme_matplotlib.git
12+
ing_theme_matplotlib>=0.1.8

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
MAJOR = 0
66
REVISION = 4
7-
PATCH = 1
7+
PATCH = 2
88
DEV = False
99
# NOTE: also update version at: README.rst
1010

0 commit comments

Comments
 (0)