Skip to content

Commit

Permalink
Merge pull request #135 from ing-bank/develop
Browse files Browse the repository at this point in the history
v0.4.2
  • Loading branch information
sbrugman committed Aug 25, 2021
2 parents 8ffbb32 + 0ee5019 commit c5f21ac
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/license.yml
Expand Up @@ -18,11 +18,13 @@ jobs:
- uses: actions/checkout@v2
- name: Set up Golang
uses: actions/setup-go@v2
with:
go-version: '^1.16' # See https://github.com/google/go-licenses/issues/75
- name: Install addlicense
run: |
export PATH=${PATH}:`go env GOPATH`/bin
go get -v -u github.com/google/addlicense
- name: Check license
run: |
export PATH=${PATH}:`go env GOPATH`/bin
addlicense -check -l mit -c "ING Wholesale Banking Advanced Analytics" $(find popmon/ -type f -name '*.py' -not -path popmon/version.py)
addlicense -check -l mit -c "ING Wholesale Banking Advanced Analytics" $(find popmon/ -type f -name '*.py' -not -path popmon/version.py)
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,10 @@
# Release notes
## [Version 0.4.2](https://github.com/ing-bank/popmon/compare/v0.4.1...v0.4.2) (2021-08-25)

### ⬆️ Dependencies

* Pin ing-matplotlib-theme dependency to >=0.1.8 (closes #131) ([1bca302b20f2434a8ea0dea195e974d3b2ed3da3](https://github.com/ing-bank/popmon/commit/1bca302b20f2434a8ea0dea195e974d3b2ed3da3))

## [Version 0.4.1](https://github.com/ing-bank/popmon/compare/v0.4.0...v0.4.1) (2021-06-23)


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.4.1"
full_version = "0.4.1"
version = "0.4.2"
full_version = "0.4.2"
release = True
2 changes: 1 addition & 1 deletion requirements-test.txt
@@ -1,6 +1,6 @@
pytest>=4.0.2
git+https://github.com/pytest-dev/pluggy.git
pytest-notebook>=0.6.1
jupyter_client>=5.2.3
jupyter_client>=5.2.3,<7
ipykernel>=5.1.3
pre-commit>=2.9.0
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -9,4 +9,4 @@ matplotlib>=2.2.3
joblib>=0.14.0
pybase64>=1.0.1
htmlmin
ing_theme_matplotlib @ git+https://gitlab.com/ing_rpaa/ing_theme_matplotlib.git
ing_theme_matplotlib>=0.1.8
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@

MAJOR = 0
REVISION = 4
PATCH = 1
PATCH = 2
DEV = False
# NOTE: also update version at: README.rst

Expand Down

0 comments on commit c5f21ac

Please sign in to comment.