jupyter-analysis-tools 1.3.2__py3-none-any.whl → 1.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,13 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # __init__.py
3
3
 
4
- __version__ = "1.3.2"
4
+ __version__ = "1.4.0"
5
5
 
6
6
  from .binning import reBin
7
7
  from .git import checkRepo, isNBstripoutActivated, isNBstripoutInstalled, isRepo
8
- from .readdata import readdata
9
- from .readdata import readdata as readPDH
10
- from .readdata import readPDHmeta, readSSF
11
- from .utils import setLocaleUTF8
8
+ from .plotting import createFigure, plotPDH
9
+ from .readdata import readdata, readPDH, readPDHmeta, readSSF, readSSFZ
10
+ from .utils import naturalKey, setLocaleUTF8
12
11
  from .widgets import PathSelector, showBoolStatus
13
12
 
14
13
  setLocaleUTF8()
@@ -4,6 +4,8 @@
4
4
  import matplotlib
5
5
  import matplotlib.pyplot as plt
6
6
 
7
+ from .readdata import readPDH
8
+
7
9
  try:
8
10
  # increase the limit for the warning to pop up
9
11
  matplotlib.rcParams["figure.max_open_warning"] = 50
@@ -43,3 +45,26 @@ def plotColor(idx):
43
45
 
44
46
  def lineWidth():
45
47
  return plt.rcParams["lines.linewidth"]
48
+
49
+
50
+ def plotPDH(filename, label, **kwargs):
51
+ """Plot a given .PDH file with the given label (shown in legend) using pandas and readPDH()."""
52
+ q_range = kwargs.pop("q_range", None)
53
+ print_filename = kwargs.pop("print_filename", True) # default value from readdata()
54
+ df, _ = readPDH(filename, q_range=q_range, print_filename=print_filename)
55
+ df["e"] = df["e"].clip(lower=0)
56
+ defaults = dict(
57
+ yerr="e",
58
+ logx=True,
59
+ logy=True,
60
+ label=label,
61
+ grid=True,
62
+ figsize=(10, 5),
63
+ xlabel=r"$q$ (nm$^{{-1}}$)",
64
+ ylabel="Intensity",
65
+ ecolor="lightgray",
66
+ )
67
+ for k, v in defaults.items():
68
+ if k not in kwargs:
69
+ kwargs[k] = v
70
+ df.plot("q", "I", **kwargs)
@@ -1,8 +1,10 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # readdata.py
3
3
 
4
+ import tempfile
4
5
  import warnings
5
6
  import xml.etree.ElementTree as et
7
+ import zipfile
6
8
  from pathlib import Path
7
9
 
8
10
  import pandas as pd
@@ -50,6 +52,9 @@ def readdata(fpath, q_range=None, read_csv_args=None, print_filename=True):
50
52
  return df, filename
51
53
 
52
54
 
55
+ readPDH = readdata
56
+
57
+
53
58
  def convertValue(val):
54
59
  val = val.strip()
55
60
  try:
@@ -146,25 +151,43 @@ def xmlPDHToDict(root):
146
151
  return result
147
152
 
148
153
 
149
- def readPDHmeta(fp):
150
- fp = Path(fp)
151
- if fp.suffix.lower() != ".pdh":
154
+ def readPDHmeta(pathPDH):
155
+ """Reads the XML metadata at the end of a .PDH file to a Python dict."""
156
+ pathPDH = Path(pathPDH)
157
+ if pathPDH.suffix.lower() != ".pdh":
152
158
  warnings.warn("readPDHmeta() supports .pdh files only!")
153
159
  return # for PDH files
154
160
  lines = ""
155
- with open(fp) as fd:
161
+ with open(pathPDH) as fd:
156
162
  lines = fd.readlines()
157
163
  nrows = int(lines[2].split()[0])
158
164
  xml = "".join(lines[nrows + 5 :])
159
165
  return xmlPDHToDict(et.fromstring(xml))
160
166
 
161
167
 
162
- def readSSF(fp):
163
- fp = Path(fp)
164
- if fp.suffix.lower() != ".ssf":
168
+ def readSSF(pathSSF):
169
+ """Reads the SAXSquant session file *pathSSF* (.SSF) to a Python dict."""
170
+ pathSSF = Path(pathSSF)
171
+ if pathSSF.suffix.lower() != ".ssf":
165
172
  warnings.warn("readSession() supports .ssf files only!")
166
173
  return # for PDH files
167
174
  data = ""
168
- with open(fp, encoding="utf-8-sig") as fd:
175
+ with open(pathSSF, encoding="utf-8-sig") as fd:
169
176
  data = fd.read()
170
177
  return xmlPDHToDict(et.fromstring(data))
178
+
179
+
180
+ def readSSFZ(pathSSFZ):
181
+ """Extracts and reads the SAXSquant session file (.SSF) to a Python dict.
182
+ The .SSF is embedded in the .SSFZ provided by *pathSSFZ*."""
183
+ assert pathSSFZ.is_file()
184
+ # unpack the SSFZ to a temporary dir
185
+ data = None
186
+ with tempfile.TemporaryDirectory() as tempdir:
187
+ with zipfile.ZipFile(pathSSFZ, "r") as zipfd:
188
+ zipfd.extractall(tempdir)
189
+ # read the session metadata from the extracted SSF file
190
+ pathSSF = next(Path(tempdir).glob("*.ssf"))
191
+ assert pathSSF.is_file()
192
+ data = readSSF(pathSSF)
193
+ return data
@@ -7,6 +7,7 @@ import itertools
7
7
  import locale
8
8
  import os
9
9
  import platform
10
+ import re
10
11
  import subprocess
11
12
  import sys
12
13
  from pathlib import Path
@@ -207,3 +208,8 @@ def updatedDict(d, key, value):
207
208
  dd = copy.copy(d)
208
209
  dd[key] = value
209
210
  return dd
211
+
212
+
213
+ def naturalKey(name):
214
+ """Split string into list of strings and integers. Use as *key* function for sorting files."""
215
+ return [int(text) if text.isdigit() else text.lower() for text in re.split(r"(\d+)", name)]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jupyter-analysis-tools
3
- Version: 1.3.2
3
+ Version: 1.4.0
4
4
  Summary: Yet another Python library with helpers and utilities for data analysis and processing.
5
5
  Author-email: Ingo Breßler <ingo.bressler@bam.de>, "Brian R. Pauw" <brian.pauw@bam.de>
6
6
  License-Expression: MIT
@@ -25,7 +25,7 @@ Classifier: Topic :: Utilities
25
25
  Classifier: Topic :: Scientific/Engineering
26
26
  Classifier: Intended Audience :: Developers
27
27
  Classifier: Intended Audience :: Science/Research
28
- Description-Content-Type: text/x-rst
28
+ Description-Content-Type: text/markdown
29
29
  License-File: LICENSE
30
30
  License-File: AUTHORS.rst
31
31
  Requires-Dist: numpy
@@ -35,12 +35,10 @@ Requires-Dist: matplotlib
35
35
  Requires-Dist: ipywidgets
36
36
  Dynamic: license-file
37
37
 
38
- # Overview
39
-
40
- Yet another Python library with helpers and utilities for data analysis and processing.
38
+ # Jupyter Analysis Tools (v1.4.0)
41
39
 
42
40
  [![PyPI Package latest release](https://img.shields.io/pypi/v/jupyter-analysis-tools.svg)](https://pypi.org/project/jupyter-analysis-tools)
43
- [![Commits since latest release](https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v1.3.2.svg)](https://github.com/BAMresearch/jupyter-analysis-tools/compare/v1.3.1...main)
41
+ [![Commits since latest release](https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v1.4.0.svg)](https://github.com/BAMresearch/jupyter-analysis-tools/compare/v1.4.0...main)
44
42
  [![License](https://img.shields.io/pypi/l/jupyter-analysis-tools.svg)](https://en.wikipedia.org/wiki/MIT_license)
45
43
  [![Supported versions](https://img.shields.io/pypi/pyversions/jupyter-analysis-tools.svg)](https://pypi.org/project/jupyter-analysis-tools)
46
44
  [![PyPI Wheel](https://img.shields.io/pypi/wheel/jupyter-analysis-tools.svg)](https://pypi.org/project/jupyter-analysis-tools#files)
@@ -48,6 +46,8 @@ Yet another Python library with helpers and utilities for data analysis and proc
48
46
  [![Continuous Integration and Deployment Status](https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml)
49
47
  [![Coverage report](https://img.shields.io/endpoint?url=https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/cov.json)](https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/)
50
48
 
49
+ Yet another Python library with helpers and utilities for data analysis and processing.
50
+
51
51
  ## Installation
52
52
 
53
53
  pip install jupyter-analysis-tools
@@ -62,307 +62,350 @@ https://BAMresearch.github.io/jupyter-analysis-tools
62
62
 
63
63
  ## Development
64
64
 
65
+ ### Testing
66
+
67
+ See which tests are available (arguments after `--` get passed to *pytest* which runs the tests):
68
+
69
+ tox -e py -- --co
70
+
71
+ Run a specific test only:
72
+
73
+ tox -e py -- -k <test_name from listing before>
74
+
65
75
  Run all tests with:
66
76
 
67
77
  tox -e py
68
78
 
69
- Note, to combine the coverage data from all the tox environments run:
79
+ ### Package Version
80
+
81
+ Get the next version number and how the GIT history would be interpreted for that:
70
82
 
71
- - Windows
83
+ pip install python-semantic-release
84
+ semantic-release -v version --print
72
85
 
73
- set PYTEST_ADDOPTS=--cov-append tox
86
+ This prints its interpretation of the commits in detail. Make sure to supply the `--print`
87
+ argument to not raise the version number which is done automatically by the *release* job
88
+ of the GitHub Action Workflows.
74
89
 
75
- - Other
90
+ ### Project template
76
91
 
77
- PYTEST_ADDOPTS=--cov-append tox
92
+ Update the project configuration from the *copier* template and make sure the required packages
93
+ are installed:
94
+
95
+ pip install copier jinja2-time
96
+ copier update --trust --skip-answered
78
97
 
79
98
  # CHANGELOG
80
99
 
100
+ ## v1.4.0 (2025-07-28)
101
+
102
+ ### Continuous integration
103
+
104
+ * **dependencies**: removed unused requirements ([`592bfe1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/592bfe1e592cf3776dc626d0df453d95e527f8b8))
105
+
106
+ ### Documentation
107
+
108
+ * **readdata**: function docstrings and clearer function arguments/variables ([`365effa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/365effa474e700beb5e9194a75f4ceb8eb9c9e7e))
109
+
110
+ * **Changelog&Readme**: updated by template ([`ab2efa8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ab2efa808b7c96b9bf63fdb333c09f070c19b754))
111
+
112
+ * **readme**: note on reapplying project template ([`a8d0176`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a8d01764645c9996bb1e2af60ba6c2d1ee33363a))
113
+
114
+ * **readme**: .rst version not needed anymore ([`a59e9a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a59e9a81b7165c67f6c02906d0266d93f7deaca3))
115
+
116
+ ### Features
117
+
118
+ * **plotting**: plotPDH() plots a given .PDH file path with pandas with reasonable defaults for SAXS ([`d592638`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d592638e613527eb471e06291bdbcd401f54c7b6))
119
+
120
+ * **Utils**: naturalKey() can be used as sort key for natural file sorting ([`a60f186`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a60f1864a87c435a165cebc885f0b55de52db796))
121
+
122
+ * feat: readSSFZ() convenience function ([`c3e882b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c3e882bc1d26be578b41c60c1f6b0df94cd83025))
123
+
81
124
  ## v1.3.2 (2025-07-23)
82
125
 
83
126
  ### Bug fixes
84
127
 
85
- * Project: let the template generate supported python versions ([`8acfa6d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8acfa6d337ea4b8b92f8ea623e961af1be9a0f17))
128
+ * **Project**: let the template generate supported python versions ([`8acfa6d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8acfa6d337ea4b8b92f8ea623e961af1be9a0f17))
86
129
 
87
130
  ### Continuous integration
88
131
 
89
- * coverage: revert config regression for coverage merging ([`dffe265`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dffe265af9779253a698f241e725d0ea03ea2979))
132
+ * **coverage**: revert config regression for coverage merging ([`dffe265`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dffe265af9779253a698f241e725d0ea03ea2979))
90
133
 
91
134
  ### Documentation
92
135
 
93
- * readme: additional fix for readme.md ([`795046f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/795046f73ada0ae85b4eb050c8453cc096c43122))
136
+ * **readme**: additional fix for readme.md ([`795046f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/795046f73ada0ae85b4eb050c8453cc096c43122))
94
137
 
95
- * readme: in markdown format for combining with changelog ([`eb6b904`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/eb6b904136697ddc2427369a605058e464d49351))
138
+ * **readme**: in markdown format for combining with changelog ([`eb6b904`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/eb6b904136697ddc2427369a605058e464d49351))
96
139
 
97
- * readme: use markdown format to allow combining with changelog on PyPI ([`395b2c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/395b2c0c72232e9109ca50c5b84a7fce2d423df4))
140
+ * **readme**: use markdown format to allow combining with changelog on PyPI ([`395b2c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/395b2c0c72232e9109ca50c5b84a7fce2d423df4))
98
141
 
99
142
  ## v1.3.1 (2025-07-23)
100
143
 
101
144
  ### Bug fixes
102
145
 
103
- * Project: update manifest and flake8 config, reapplied template ([`c98c648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c98c6489423a45d8a195fda32396ea9d9d18b9eb))
146
+ * **Project**: update manifest and flake8 config, reapplied template ([`c98c648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c98c6489423a45d8a195fda32396ea9d9d18b9eb))
104
147
 
105
148
  ### Code style
106
149
 
107
- * utils: satisfy flake8 ([`2e3dc36`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e3dc36ef21e60f4fe7b8caea567411cc69967c0))
150
+ * **utils**: satisfy flake8 ([`2e3dc36`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e3dc36ef21e60f4fe7b8caea567411cc69967c0))
108
151
 
109
152
  ### Continuous integration
110
153
 
111
- * semantic-release: replace .cookiecutterrc by .copier-answers.yml ([`2030c88`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2030c88dfb0ca69ac332380e33b3baed9cb6cf44))
154
+ * **semantic-release**: replace .cookiecutterrc by .copier-answers.yml ([`2030c88`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2030c88dfb0ca69ac332380e33b3baed9cb6cf44))
112
155
 
113
- * coverage: coverage-report fix ([`1bd26b7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1bd26b71abcb090ef32cb2fbdd05b978bce5144c))
156
+ * **coverage**: coverage-report fix ([`1bd26b7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1bd26b71abcb090ef32cb2fbdd05b978bce5144c))
114
157
 
115
- * GitHub Workflows: remove templates, rendered by *copier update* ([`8a637a5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8a637a5b34df4a3ec6a4e8cae97a9d3e24ad2e5c))
158
+ * **GitHub Workflows**: remove templates, rendered by *copier update* ([`8a637a5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8a637a5b34df4a3ec6a4e8cae97a9d3e24ad2e5c))
116
159
 
117
- * GitHub Workflow: publish depends on all other job to be successful ([`efc1f22`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efc1f223aa2da882d43b27406a2f20113c2c8879))
160
+ * **GitHub Workflow**: publish depends on all other job to be successful ([`efc1f22`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efc1f223aa2da882d43b27406a2f20113c2c8879))
118
161
 
119
- * Template: latest GitHub Workflow templates applied ([`7d87906`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7d87906c852cb2b57704c45db0b19c7a1ae513a2))
162
+ * **Template**: latest GitHub Workflow templates applied ([`7d87906`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7d87906c852cb2b57704c45db0b19c7a1ae513a2))
120
163
 
121
- * coverage: fix path name matching rules ([`37bd2d9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/37bd2d93a8fe10a3355feee6779f45bd9161a88b))
164
+ * **coverage**: fix path name matching rules ([`37bd2d9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/37bd2d93a8fe10a3355feee6779f45bd9161a88b))
122
165
 
123
166
  ### Documentation
124
167
 
125
- * Copyright years: update ([`cee35e6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cee35e6fe92ae27575bd7fb4a7a2638cd1c931b2))
168
+ * **Copyright years**: update ([`cee35e6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cee35e6fe92ae27575bd7fb4a7a2638cd1c931b2))
126
169
 
127
- * Contributions: Authors update ([`dd5a5c4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dd5a5c4d81732821057bcc200f462159cffa760b))
170
+ * **Contributions**: Authors update ([`dd5a5c4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dd5a5c4d81732821057bcc200f462159cffa760b))
128
171
 
129
172
  ### Refactoring
130
173
 
131
- * Project: GitHub Workflow templates fixed ([`b346b28`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b346b282332f0f7f81b724509a4004e6a69d7791))
174
+ * **Project**: GitHub Workflow templates fixed ([`b346b28`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b346b282332f0f7f81b724509a4004e6a69d7791))
132
175
 
133
- * Project: GitHub Workflow templates updated ([`235c4d9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/235c4d9c53997fdf4c08913361fb57167939cd7c))
176
+ * **Project**: GitHub Workflow templates updated ([`235c4d9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/235c4d9c53997fdf4c08913361fb57167939cd7c))
134
177
 
135
- * Project: switching to copier for project template with update mechanism ([`0d3064b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0d3064b8cef45667b0964aab248b583424946207))
178
+ * **Project**: switching to copier for project template with update mechanism ([`0d3064b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0d3064b8cef45667b0964aab248b583424946207))
136
179
 
137
180
  ## v1.3.0 (2025-07-16)
138
181
 
139
182
  ### Bug fixes
140
183
 
141
- * utils.extract7z: informative info message ([`80d2f71`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/80d2f7134992d59f0bfd7f5e7bc27772f77cd452))
184
+ * **utils.extract7z**: informative info message ([`80d2f71`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/80d2f7134992d59f0bfd7f5e7bc27772f77cd452))
142
185
 
143
186
  ### Continuous integration
144
187
 
145
- * coverage: fix coverage artifact name for multiple matrix.os ([`f471599`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f471599b8c86e29fd20b78f7cbd9291c3a6dd98a))
188
+ * **coverage**: fix coverage artifact name for multiple matrix.os ([`f471599`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f471599b8c86e29fd20b78f7cbd9291c3a6dd98a))
146
189
 
147
- * testing: test on Windows as well ([`4a83c39`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a83c3924bcb820ef0728af40b86a0f6622dfef2))
190
+ * **testing**: test on Windows as well ([`4a83c39`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a83c3924bcb820ef0728af40b86a0f6622dfef2))
148
191
 
149
192
  ### Features
150
193
 
151
- * utils.makeNetworkdriveAbsolute: new routines for translating a windows drive letter mount to its network location ([`823a6bf`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/823a6bfe126829381bc14d34578f342f4b9d3e8f))
194
+ * **utils.makeNetworkdriveAbsolute**: new routines for translating a windows drive letter mount to its network location ([`823a6bf`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/823a6bfe126829381bc14d34578f342f4b9d3e8f))
152
195
 
153
196
  ## v1.2.2 (2025-07-15)
154
197
 
155
198
  ### Bug fixes
156
199
 
157
- * readPDHmeta: use unique dict keys, the xmk *key* can occur in multiple groups in PDH ([`ef41c81`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ef41c81d40d801b5baf86f56cf9012ca35d2ccde))
200
+ * **readPDHmeta**: use unique dict keys, the xmk *key* can occur in multiple groups in PDH ([`ef41c81`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ef41c81d40d801b5baf86f56cf9012ca35d2ccde))
158
201
 
159
202
  ### Documentation
160
203
 
161
- * pyproject: revert specify readme+changelog document types ([`1baa762`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1baa762d441fe0a1b7b663b9d0589de857277426))
204
+ * **pyproject**: revert specify readme+changelog document types ([`1baa762`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1baa762d441fe0a1b7b663b9d0589de857277426))
162
205
 
163
- * pyproject: specify readme+changelog document types to render overview on pypi correctly ([`6e4d1e5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e4d1e56640b604f971ddca8dabd8d1aff5c9bf1))
206
+ * **pyproject**: specify readme+changelog document types to render overview on pypi correctly ([`6e4d1e5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e4d1e56640b604f971ddca8dabd8d1aff5c9bf1))
164
207
 
165
- * ghpages: make sure .nojekyll exists after purging old html docs ([`4847845`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4847845cc06884b6e589b26897e83411d649ef4d))
208
+ * **ghpages**: make sure .nojekyll exists after purging old html docs ([`4847845`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4847845cc06884b6e589b26897e83411d649ef4d))
166
209
 
167
210
  ## v1.2.1 (2025-07-11)
168
211
 
169
212
  ### Bug fixes
170
213
 
171
- * readme: trigger new version after style changes ([`8b2b5e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8b2b5e93c0f24ae59afaa764abdc508e994946b4))
214
+ * **readme**: trigger new version after style changes ([`8b2b5e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8b2b5e93c0f24ae59afaa764abdc508e994946b4))
172
215
 
173
216
  ### Code style
174
217
 
175
- * __init__: imports format ([`6f07790`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6f07790a04e43736b1c0fbce0eac54d0b661a7cf))
218
+ * **__init__**: imports format ([`6f07790`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6f07790a04e43736b1c0fbce0eac54d0b661a7cf))
176
219
 
177
- * utils: satisfy flake8 ([`9657474`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9657474e94a4d9887c4a6b653e0ffa403e666d02))
220
+ * **utils**: satisfy flake8 ([`9657474`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9657474e94a4d9887c4a6b653e0ffa403e666d02))
178
221
 
179
- * readdata: satisfy flake8 ([`36bf6e8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/36bf6e8be67a2ebd345c5557c2352710bcebed82))
222
+ * **readdata**: satisfy flake8 ([`36bf6e8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/36bf6e8be67a2ebd345c5557c2352710bcebed82))
180
223
 
181
224
  ### Continuous integration
182
225
 
183
- * workflow: publish only if the docs are good ([`a663ed3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a663ed3d1fd87079a4fd7cf419132a129280a562))
226
+ * **workflow**: publish only if the docs are good ([`a663ed3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a663ed3d1fd87079a4fd7cf419132a129280a562))
184
227
 
185
228
  ### Testing
186
229
 
187
- * utils: fix imports ([`ddd5369`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ddd5369b8037f583c6900aea25522a56126c9d32))
230
+ * **utils**: fix imports ([`ddd5369`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ddd5369b8037f583c6900aea25522a56126c9d32))
188
231
 
189
232
  ## v1.2.0 (2025-07-11)
190
233
 
191
234
  ### Features
192
235
 
193
- * readdata: readSSF() renamed from readSession(), tests added with expected JSON output ([`e2197f6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e2197f6bcb032c1bc1a9a7435e024dda763228c4))
236
+ * **readdata**: readSSF() renamed from readSession(), tests added with expected JSON output ([`e2197f6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e2197f6bcb032c1bc1a9a7435e024dda763228c4))
194
237
 
195
- * readPDHmeta: routine for reading metadata part from .PDH and .SSF files ([`ea6a1d5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ea6a1d554f3763fc05022ae8e4e8909f0993cd43))
238
+ * **readPDHmeta**: routine for reading metadata part from .PDH and .SSF files ([`ea6a1d5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ea6a1d554f3763fc05022ae8e4e8909f0993cd43))
196
239
 
197
240
  ### Testing
198
241
 
199
- * readdata: path separator depends on platform ([`1b2866f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1b2866f13307c2cf2dedc59f36d7372442ddbfd8))
242
+ * **readdata**: path separator depends on platform ([`1b2866f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1b2866f13307c2cf2dedc59f36d7372442ddbfd8))
200
243
 
201
- * readdata: testdata files and testing, using pathlib instead of old os.path ([`aeacfa4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/aeacfa4a949d7293f2cd3ce5e3004fddf20ecc02))
244
+ * **readdata**: testdata files and testing, using pathlib instead of old os.path ([`aeacfa4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/aeacfa4a949d7293f2cd3ce5e3004fddf20ecc02))
202
245
 
203
246
  ## v1.1.0 (2025-07-10)
204
247
 
205
248
  ### Bug fixes
206
249
 
207
- * packaging: add dependencies for project and testing ([`2729a45`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2729a45958893c9acd07af9463bbf7d657db626b))
250
+ * **packaging**: add dependencies for project and testing ([`2729a45`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2729a45958893c9acd07af9463bbf7d657db626b))
208
251
 
209
252
  ### Documentation
210
253
 
211
- * utils: reformat doc strings ([`1cf9b9b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1cf9b9b969e075a75a41e19bfb526378b68a0ed7))
254
+ * **utils**: reformat doc strings ([`1cf9b9b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1cf9b9b969e075a75a41e19bfb526378b68a0ed7))
212
255
 
213
256
  ### Features
214
257
 
215
- * utils: addEnvScriptsToPATH() ([`a8c22e0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a8c22e0d37a5627d5955c1f7f7eebcb0bc99206e))
258
+ * **utils**: addEnvScriptsToPATH() ([`a8c22e0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a8c22e0d37a5627d5955c1f7f7eebcb0bc99206e))
216
259
 
217
- * notebook_utils: remove method for finding notebook file path currentNBpath() ([`13a5a60`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/13a5a60436c7926c478f2ab3f2c309a86b653218))
260
+ * **notebook_utils**: remove method for finding notebook file path currentNBpath() ([`13a5a60`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/13a5a60436c7926c478f2ab3f2c309a86b653218))
218
261
 
219
262
  ### Refactoring
220
263
 
221
- * utils: appendToPATH() using pathlib, verifed test included ([`35f37fc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/35f37fc19cdcf4b575dc0525400f3c0212bb0faf))
264
+ * **utils**: appendToPATH() using pathlib, verifed test included ([`35f37fc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/35f37fc19cdcf4b575dc0525400f3c0212bb0faf))
222
265
 
223
266
  ### Testing
224
267
 
225
- * readdata: test data for reading PDH and SSFZ ([`9b919d2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9b919d24e1fa5679b49cebf576e471d6e4e9b655))
268
+ * **readdata**: test data for reading PDH and SSFZ ([`9b919d2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9b919d24e1fa5679b49cebf576e471d6e4e9b655))
226
269
 
227
270
  ## v1.0.0 (2025-07-09)
228
271
 
229
272
  ### Bug fixes
230
273
 
231
- * packaging: add required dependency packages to project config ([`43076e2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/43076e2fd27e511545d8f1ec12752435cf5153c6))
274
+ * **packaging**: add required dependency packages to project config ([`43076e2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/43076e2fd27e511545d8f1ec12752435cf5153c6))
232
275
 
233
276
  ## v0.1.8 (2025-01-30)
234
277
 
235
278
  ### Bug fixes
236
279
 
237
- * distrib: scipy.integrate.simps does not exist in recent scipy versions ([`b59edc1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b59edc18a6df3bbee23a3ba6e8b8412c294c20d1))
280
+ * **distrib**: scipy.integrate.simps does not exist in recent scipy versions ([`b59edc1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b59edc18a6df3bbee23a3ba6e8b8412c294c20d1))
238
281
 
239
282
  ### Continuous integration
240
283
 
241
- * changelog: format commit by using their scope only, not repeating the tag ([`6b72fe7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6b72fe766d121d7ea38c452d093368f84760155e))
284
+ * **changelog**: format commit by using their scope only, not repeating the tag ([`6b72fe7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6b72fe766d121d7ea38c452d093368f84760155e))
242
285
 
243
- * semver: allow message tag *enh* for enhancements ([`0810b4f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0810b4fd58e1b2383313496b657a800078260c83))
286
+ * **semver**: allow message tag *enh* for enhancements ([`0810b4f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0810b4fd58e1b2383313496b657a800078260c83))
244
287
 
245
288
  ### Documentation
246
289
 
247
- * Changelog: use semantic-release detected scope if available, unchange summary otherwise ([`ca803e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ca803e71d1a5915fc72a4a2feea55616533ff54e))
290
+ * **Changelog**: use semantic-release detected scope if available, unchange summary otherwise ([`ca803e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ca803e71d1a5915fc72a4a2feea55616533ff54e))
248
291
 
249
- * Changelog: omit *empty* versions without relevant changes ([`87b7f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/87b7f2360c5224a6570f8687e8008e2293b81ddb))
292
+ * **Changelog**: omit *empty* versions without relevant changes ([`87b7f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/87b7f2360c5224a6570f8687e8008e2293b81ddb))
250
293
 
251
- * index: show link to github project on left sidebar ([`3fad5a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3fad5a870801904a636a114d70ff418886c3f2a6))
294
+ * **index**: show link to github project on left sidebar ([`3fad5a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3fad5a870801904a636a114d70ff418886c3f2a6))
252
295
 
253
- * Changelog: don't show *chore* changes on automated build config (CI) ([`10c7ee3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10c7ee3190969322b3e19b5ff0ce5e1e911bff59))
296
+ * **Changelog**: don't show *chore* changes on automated build config (CI) ([`10c7ee3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10c7ee3190969322b3e19b5ff0ce5e1e911bff59))
254
297
 
255
- * Changelog: exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
298
+ * **Changelog**: exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
256
299
 
257
300
  ## v0.1.7 (2024-03-26)
258
301
 
259
302
  ### Bug fixes
260
303
 
261
- * distrib: Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
304
+ * **distrib**: Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
262
305
 
263
306
  ### Refactoring
264
307
 
265
- * notebook_utils: whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
308
+ * **notebook_utils**: whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
266
309
 
267
310
  ## v0.1.6 (2024-03-25)
268
311
 
269
312
  ### Bug fixes
270
313
 
271
- * notebook_utils: notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
314
+ * **notebook_utils**: notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
272
315
 
273
316
  ## v0.1.6-dev.1 (2023-03-27)
274
317
 
275
318
  ### Documentation
276
319
 
277
- * analysis: minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
320
+ * **analysis**: minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
278
321
 
279
322
  ## v0.1.5 (2023-03-27)
280
323
 
281
324
  ### Bug fixes
282
325
 
283
- * reBin: module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
326
+ * **reBin**: module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
284
327
 
285
328
  ### Code style
286
329
 
287
- * format: fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
330
+ * **format**: fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
288
331
 
289
- * binning: fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
332
+ * **binning**: fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
290
333
 
291
334
  ### Documentation
292
335
 
293
- * cleanup: removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
336
+ * **cleanup**: removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
294
337
 
295
- * format: fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
338
+ * **format**: fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
296
339
 
297
340
  ## v0.1.5-dev.1 (2023-03-27)
298
341
 
299
342
  ### Code style
300
343
 
301
- * config: string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
344
+ * **config**: string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
302
345
 
303
346
  ### Documentation
304
347
 
305
- * General: config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
348
+ * **General**: config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
306
349
 
307
350
  ## v0.1.4 (2023-03-03)
308
351
 
309
352
  ### Bug fixes
310
353
 
311
- * readme: license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
354
+ * **readme**: license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
312
355
 
313
356
  ## v0.1.3 (2023-03-03)
314
357
 
315
358
  ### Bug fixes
316
359
 
317
- * tox: clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
360
+ * **tox**: clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
318
361
 
319
- * Package: cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
362
+ * **Package**: cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
320
363
 
321
- * tox: cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
364
+ * **tox**: cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
322
365
 
323
- * GitHubAction: migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
366
+ * **GitHubAction**: migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
324
367
 
325
368
  ### Code style
326
369
 
327
- * pyproject.toml: use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
370
+ * **pyproject.toml**: use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
328
371
 
329
372
  ### Documentation
330
373
 
331
- * readme: adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
374
+ * **readme**: adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
332
375
 
333
- * readme: using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
376
+ * **readme**: using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
334
377
 
335
- * Package: update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
378
+ * **Package**: update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
336
379
 
337
- * comments: add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
380
+ * **comments**: add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
338
381
 
339
382
  ### Refactoring
340
383
 
341
- * docs: config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
384
+ * **docs**: config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
342
385
 
343
- * metadata: update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
386
+ * **metadata**: update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
344
387
 
345
388
  ### Testing
346
389
 
347
- * tox: find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
390
+ * **tox**: find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
348
391
 
349
392
  ## v0.1.2 (2023-02-24)
350
393
 
351
394
  ### Bug fixes
352
395
 
353
- * Documentation: doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
396
+ * **Documentation**: doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
354
397
 
355
398
  ### Documentation
356
399
 
357
- * distrib: generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
400
+ * **distrib**: generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
358
401
 
359
402
  ## v0.1.2-dev.1 (2023-02-24)
360
403
 
361
404
  ### Documentation
362
405
 
363
- * utils: generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
406
+ * **utils**: generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
364
407
 
365
- ### Unknown
408
+ ### Unknown Scope
366
409
 
367
410
  * v0.1.1 ([`738fdd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/738fdd44b27881360f51f540f28cda4aed2e9005))
368
411
 
@@ -370,29 +413,29 @@ Note, to combine the coverage data from all the tox environments run:
370
413
 
371
414
  ### Bug fixes
372
415
 
373
- * docs: allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
416
+ * **docs**: allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
374
417
 
375
418
  ## v0.1.1-dev.4 (2023-02-23)
376
419
 
377
420
  ### Documentation
378
421
 
379
- * readme: updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
422
+ * **readme**: updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
380
423
 
381
424
  ## v0.1.1-dev.1 (2023-02-23)
382
425
 
383
426
  ### Bug fixes
384
427
 
385
- * tox: removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
428
+ * **tox**: removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
386
429
 
387
430
  ### Documentation
388
431
 
389
- * config: clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
432
+ * **config**: clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
390
433
 
391
434
  * docs: removed disabled config ([`3059ff9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3059ff9fba6a17b845441cd283c0f498c05beab2))
392
435
 
393
436
  * docs: disabled incompatible sidebar config with furo theme ([`61959be`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61959be18f26e304042c21872f50dda23635caae))
394
437
 
395
- ### Unknown
438
+ ### Unknown Scope
396
439
 
397
440
  * added tox-wheel to ci required packages ([`7eae72c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7eae72c4a2e977c3efc56b5d9c8da76d67d44536))
398
441
 
@@ -474,7 +517,7 @@ Note, to combine the coverage data from all the tox environments run:
474
517
 
475
518
  * docs: updated urls and gh workflow spec ([`66a0704`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/66a07049567a524a82633547c8006ed1630238c1))
476
519
 
477
- ### Unknown
520
+ ### Unknown Scope
478
521
 
479
522
  * tbump config updated ([`e17de91`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e17de9111659992b9419efc7e07c58172737e285))
480
523
 
@@ -0,0 +1,16 @@
1
+ jupyter_analysis_tools/__init__.py,sha256=WrJsVr7LphomlndzM1P8cM0PpA9EGg9DefUq-Sk2GqM,398
2
+ jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
+ jupyter_analysis_tools/binning.py,sha256=d6eXRC3IOnnJIF25OfEASyWedT71EX2nF7jAgGJ9suQ,14536
4
+ jupyter_analysis_tools/datalocations.py,sha256=BakfiZOMcBwp-_DAn7l57lGWZmZGNnk0j73V75nLBUA,4322
5
+ jupyter_analysis_tools/distrib.py,sha256=uyh2jXDdXR6dfd36CAoE5_psoFF0bfA6l1wletPD7Xo,16515
6
+ jupyter_analysis_tools/git.py,sha256=mqSk5nnAFrmk1_2KFuKVrDWOkRbGbAQOq2N1DfxhNpg,2216
7
+ jupyter_analysis_tools/plotting.py,sha256=X5Orrwiof-9MuYMKDJEXIlIt0K6bQT6ktFFjXKIVApI,1962
8
+ jupyter_analysis_tools/readdata.py,sha256=kHbGh7sp3lbpxuHASmCUVZsfH45JCIxMzgSnbq-Pgoo,6883
9
+ jupyter_analysis_tools/utils.py,sha256=tPKmxZytgSCzopDpv6YcTr5EBiXj_-dnjPM9iUOnvgY,6556
10
+ jupyter_analysis_tools/widgets.py,sha256=rA8qPvY9nS1OtykZwXtCTG29K-N_MYFVb5Aj8yK40_s,2996
11
+ jupyter_analysis_tools-1.4.0.dist-info/licenses/AUTHORS.rst,sha256=-twUESsY0XqFQ0MIC0ylKhglNwL8lyHmGXriM3RF-2s,93
12
+ jupyter_analysis_tools-1.4.0.dist-info/licenses/LICENSE,sha256=jRVl3hmCq0Qv1wifm-EelEKhFWecdoWdhcxSte4a1_c,1125
13
+ jupyter_analysis_tools-1.4.0.dist-info/METADATA,sha256=6L8JnF7qjkcZXnoQYK5js7yqZwjY3pkR5sil6isACLg,43853
14
+ jupyter_analysis_tools-1.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ jupyter_analysis_tools-1.4.0.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
16
+ jupyter_analysis_tools-1.4.0.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- jupyter_analysis_tools/__init__.py,sha256=JohsjD12gZKKvGWlIAMuKV4Vol4NLJEPaUks7b2YteY,386
2
- jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
- jupyter_analysis_tools/binning.py,sha256=d6eXRC3IOnnJIF25OfEASyWedT71EX2nF7jAgGJ9suQ,14536
4
- jupyter_analysis_tools/datalocations.py,sha256=BakfiZOMcBwp-_DAn7l57lGWZmZGNnk0j73V75nLBUA,4322
5
- jupyter_analysis_tools/distrib.py,sha256=uyh2jXDdXR6dfd36CAoE5_psoFF0bfA6l1wletPD7Xo,16515
6
- jupyter_analysis_tools/git.py,sha256=mqSk5nnAFrmk1_2KFuKVrDWOkRbGbAQOq2N1DfxhNpg,2216
7
- jupyter_analysis_tools/plotting.py,sha256=L2gwSjlBVK8OneAfSuna3vCJIg2rSEdvd9TfEbM2Als,1183
8
- jupyter_analysis_tools/readdata.py,sha256=6Tncwo3NSYAnyLQzAhDtiUyp1Xpw3CahqQ_5NeGhJqI,6030
9
- jupyter_analysis_tools/utils.py,sha256=EbRooLCGODH8tjQVE8-OuuPoI4weKLzmxdFY794En_k,6327
10
- jupyter_analysis_tools/widgets.py,sha256=rA8qPvY9nS1OtykZwXtCTG29K-N_MYFVb5Aj8yK40_s,2996
11
- jupyter_analysis_tools-1.3.2.dist-info/licenses/AUTHORS.rst,sha256=-twUESsY0XqFQ0MIC0ylKhglNwL8lyHmGXriM3RF-2s,93
12
- jupyter_analysis_tools-1.3.2.dist-info/licenses/LICENSE,sha256=jRVl3hmCq0Qv1wifm-EelEKhFWecdoWdhcxSte4a1_c,1125
13
- jupyter_analysis_tools-1.3.2.dist-info/METADATA,sha256=m7O2CREPyjxd2aYi4n-vz4o13d4bzsOmfFQUNTRiTBY,41321
14
- jupyter_analysis_tools-1.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- jupyter_analysis_tools-1.3.2.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
16
- jupyter_analysis_tools-1.3.2.dist-info/RECORD,,