File tree Expand file tree Collapse file tree 6 files changed +14
-6
lines changed Expand file tree Collapse file tree 6 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,13 @@ jobs:
18
18
- uses : actions/checkout@v2
19
19
- name : Set up Golang
20
20
uses : actions/setup-go@v2
21
+ with :
22
+ go-version : ' ^1.16' # See https://github.com/google/go-licenses/issues/75
21
23
- name : Install addlicense
22
24
run : |
23
25
export PATH=${PATH}:`go env GOPATH`/bin
24
26
go get -v -u github.com/google/addlicense
25
27
- name : Check license
26
28
run : |
27
29
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)
Original file line number Diff line number Diff line change 1
1
# 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
+
2
8
## [ Version 0.4.1] ( https://github.com/ing-bank/popmon/compare/v0.4.0...v0.4.1 ) (2021-06-23)
3
9
4
10
Original file line number Diff line number Diff line change 1
1
"""THIS FILE IS AUTO-GENERATED BY SETUP.PY."""
2
2
3
3
name = "popmon"
4
- version = "0.4.1 "
5
- full_version = "0.4.1 "
4
+ version = "0.4.2 "
5
+ full_version = "0.4.2 "
6
6
release = True
Original file line number Diff line number Diff line change 1
1
pytest>=4.0.2
2
2
git+https://github.com/pytest-dev/pluggy.git
3
3
pytest-notebook>=0.6.1
4
- jupyter_client>=5.2.3
4
+ jupyter_client>=5.2.3,<7
5
5
ipykernel>=5.1.3
6
6
pre-commit>=2.9.0
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ matplotlib>=2.2.3
9
9
joblib >= 0.14.0
10
10
pybase64 >= 1.0.1
11
11
htmlmin
12
- ing_theme_matplotlib @ git+https://gitlab.com/ing_rpaa/ing_theme_matplotlib.git
12
+ ing_theme_matplotlib >= 0.1.8
Original file line number Diff line number Diff line change 4
4
5
5
MAJOR = 0
6
6
REVISION = 4
7
- PATCH = 1
7
+ PATCH = 2
8
8
DEV = False
9
9
# NOTE: also update version at: README.rst
10
10
You can’t perform that action at this time.
0 commit comments