jupyter-analysis-tools 1.7.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.
- jupyter_analysis_tools/__init__.py +13 -0
- jupyter_analysis_tools/analysis.py +47 -0
- jupyter_analysis_tools/binning.py +443 -0
- jupyter_analysis_tools/datalocations.py +128 -0
- jupyter_analysis_tools/datastore.py +173 -0
- jupyter_analysis_tools/distrib.py +444 -0
- jupyter_analysis_tools/git.py +75 -0
- jupyter_analysis_tools/plotting.py +70 -0
- jupyter_analysis_tools/readdata.py +193 -0
- jupyter_analysis_tools/ssfz2json.py +57 -0
- jupyter_analysis_tools/ssfz_compare.py +54 -0
- jupyter_analysis_tools/utils.py +262 -0
- jupyter_analysis_tools/widgets.py +89 -0
- jupyter_analysis_tools-1.7.0.dist-info/METADATA +807 -0
- jupyter_analysis_tools-1.7.0.dist-info/RECORD +20 -0
- jupyter_analysis_tools-1.7.0.dist-info/WHEEL +5 -0
- jupyter_analysis_tools-1.7.0.dist-info/entry_points.txt +3 -0
- jupyter_analysis_tools-1.7.0.dist-info/licenses/AUTHORS.rst +6 -0
- jupyter_analysis_tools-1.7.0.dist-info/licenses/LICENSE +9 -0
- jupyter_analysis_tools-1.7.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,807 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: jupyter-analysis-tools
|
|
3
|
+
Version: 1.7.0
|
|
4
|
+
Summary: Yet another Python library with helpers and utilities for data analysis and processing.
|
|
5
|
+
Author-email: Ingo Breßler <ingo.bressler@bam.de>, "Brian R. Pauw" <brian.pauw@bam.de>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: homepage, https://BAMresearch.github.io/jupyter-analysis-tools
|
|
8
|
+
Project-URL: documentation, https://BAMresearch.github.io/jupyter-analysis-tools
|
|
9
|
+
Project-URL: repository, https://github.com/BAMresearch/jupyter-analysis-tools
|
|
10
|
+
Project-URL: changelog, https://BAMresearch.github.io/jupyter-analysis-tools/changelog.html
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Operating System :: Unix
|
|
13
|
+
Classifier: Operating System :: POSIX
|
|
14
|
+
Classifier: Operating System :: MacOS
|
|
15
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
+
Classifier: Programming Language :: Python
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
|
+
Classifier: Framework :: Jupyter :: JupyterLab
|
|
24
|
+
Classifier: Topic :: Utilities
|
|
25
|
+
Classifier: Topic :: Scientific/Engineering
|
|
26
|
+
Classifier: Intended Audience :: Developers
|
|
27
|
+
Classifier: Intended Audience :: Science/Research
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
License-File: AUTHORS.rst
|
|
31
|
+
Requires-Dist: numpy
|
|
32
|
+
Requires-Dist: scipy
|
|
33
|
+
Requires-Dist: pandas
|
|
34
|
+
Requires-Dist: matplotlib
|
|
35
|
+
Requires-Dist: ipywidgets
|
|
36
|
+
Requires-Dist: pybis
|
|
37
|
+
Dynamic: license-file
|
|
38
|
+
|
|
39
|
+
# Jupyter Analysis Tools (v1.7.0)
|
|
40
|
+
|
|
41
|
+
[](https://pypi.org/project/jupyter-analysis-tools)
|
|
42
|
+
[](https://github.com/BAMresearch/jupyter-analysis-tools/compare/v1.7.0...main)
|
|
43
|
+
[](https://en.wikipedia.org/wiki/MIT_license)
|
|
44
|
+
[](https://pypi.org/project/jupyter-analysis-tools)
|
|
45
|
+
[](https://pypi.org/project/jupyter-analysis-tools#files)
|
|
46
|
+
[](https://pypi.org/project/jupyter-analysis-tools/)
|
|
47
|
+
[](https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml)
|
|
48
|
+
[](https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/)
|
|
49
|
+
|
|
50
|
+
Yet another Python library with helpers and utilities for data analysis and processing.
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
pip install jupyter-analysis-tools
|
|
55
|
+
|
|
56
|
+
You can also install the in-development version with:
|
|
57
|
+
|
|
58
|
+
pip install git+https://github.com/BAMresearch/jupyter-analysis-tools.git@main
|
|
59
|
+
|
|
60
|
+
## Documentation
|
|
61
|
+
|
|
62
|
+
https://BAMresearch.github.io/jupyter-analysis-tools
|
|
63
|
+
|
|
64
|
+
## Development
|
|
65
|
+
|
|
66
|
+
### Testing
|
|
67
|
+
|
|
68
|
+
See which tests are available (arguments after `--` get passed to *pytest* which runs the tests):
|
|
69
|
+
|
|
70
|
+
tox -e py -- --co
|
|
71
|
+
|
|
72
|
+
Run a specific test only:
|
|
73
|
+
|
|
74
|
+
tox -e py -- -k <test_name from listing before>
|
|
75
|
+
|
|
76
|
+
Run all tests with:
|
|
77
|
+
|
|
78
|
+
tox -e py
|
|
79
|
+
|
|
80
|
+
### Package Version
|
|
81
|
+
|
|
82
|
+
Get the next version number and how the GIT history would be interpreted for that:
|
|
83
|
+
|
|
84
|
+
pip install python-semantic-release
|
|
85
|
+
semantic-release -v version --print
|
|
86
|
+
|
|
87
|
+
This prints its interpretation of the commits in detail. Make sure to supply the `--print`
|
|
88
|
+
argument to not raise the version number which is done automatically by the *release* job
|
|
89
|
+
of the GitHub Action Workflows.
|
|
90
|
+
|
|
91
|
+
### Project template
|
|
92
|
+
|
|
93
|
+
Update the project configuration from the *copier* template and make sure the required packages
|
|
94
|
+
are installed:
|
|
95
|
+
|
|
96
|
+
pip install copier jinja2-time
|
|
97
|
+
copier update --trust --skip-answered
|
|
98
|
+
|
|
99
|
+
# CHANGELOG
|
|
100
|
+
|
|
101
|
+
## v1.7.0 (2025-12-11)
|
|
102
|
+
|
|
103
|
+
### Code style
|
|
104
|
+
|
|
105
|
+
* **DataStore**: line length ([`8741be2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8741be28e86990ec18ec946795f2a6b643dcaac6))
|
|
106
|
+
|
|
107
|
+
### Enh
|
|
108
|
+
|
|
109
|
+
* **DataStore.init**: remember token and forward how long it should be valid ([`385ecf8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/385ecf8137bbce46f7ed5266de3596b415e4576c))
|
|
110
|
+
|
|
111
|
+
## v1.6.3 (2025-12-04)
|
|
112
|
+
|
|
113
|
+
### Bug fixes
|
|
114
|
+
|
|
115
|
+
* **GitHub Workflow**: maintenance updates ([`59ea72b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59ea72b0317d1e696871789bb1f7d585bc29e4c0))
|
|
116
|
+
|
|
117
|
+
## v1.6.2 (2025-09-22)
|
|
118
|
+
|
|
119
|
+
### Bug fixes
|
|
120
|
+
|
|
121
|
+
* **Project**: add pybis dependency, for datastore module ([`80350c7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/80350c7e3f662dd8fa52bbbf46c66104407d930a))
|
|
122
|
+
|
|
123
|
+
### Code style
|
|
124
|
+
|
|
125
|
+
* **DataStore**: formatting ([`5afbd91`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5afbd91080cabe4dea23102a7c9248dc2bee1af4))
|
|
126
|
+
|
|
127
|
+
## v1.6.1 (2025-09-19)
|
|
128
|
+
|
|
129
|
+
### Bug fixes
|
|
130
|
+
|
|
131
|
+
* **DataStore**: regression of handling of existing objects ([`28bd44c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/28bd44cf019aea0203ad252fd434860f45a1e54a))
|
|
132
|
+
|
|
133
|
+
* **DataStore**: proper forwarding of spacePrefix for filtering relevant spaces ([`c4117f3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c4117f3b04b9f6237f6d8471bef2d76c379e6f11))
|
|
134
|
+
|
|
135
|
+
* **DataStore**: use the URL provided by constructor ([`fcc46fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/fcc46fb941006b489054dc492f433e62d77cb605))
|
|
136
|
+
|
|
137
|
+
## v1.6.0 (2025-09-19)
|
|
138
|
+
|
|
139
|
+
### Bug fixes
|
|
140
|
+
|
|
141
|
+
* **DataStore**: f-string syntax ([`9166382`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/916638264be58e75fdfba15d9c6a6584ace92199))
|
|
142
|
+
|
|
143
|
+
* **Tests**: pybis module required for collecting in new datastore module ([`ea6a21d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ea6a21df3656dcc5f926aa7ff67a7136806ded3b))
|
|
144
|
+
|
|
145
|
+
### Features
|
|
146
|
+
|
|
147
|
+
* **DataStore**: new module for managing objects in OpenBIS ([`cdf0a27`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cdf0a27c0ae1412acd5329532ec8ec1fa7e6be94))
|
|
148
|
+
|
|
149
|
+
## v1.5.1 (2025-08-04)
|
|
150
|
+
|
|
151
|
+
### Bug fixes
|
|
152
|
+
|
|
153
|
+
* **readSSFZ**: split in two: ssfz2json for converting, ssfz_compare for diff-like compare ([`e8b24fe`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8b24fe796430bb4b09fa23dcd204e6162051f79))
|
|
154
|
+
|
|
155
|
+
## v1.5.0 (2025-08-04)
|
|
156
|
+
|
|
157
|
+
### Bug fixes
|
|
158
|
+
|
|
159
|
+
* **readSSFZ**: rename command readSSFZ -> ssfz2json for avoiding name collision with function in readdata module ([`dde1d10`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dde1d109b70de0cd0cb712cfc4f19a3be2cbd880))
|
|
160
|
+
|
|
161
|
+
### Features
|
|
162
|
+
|
|
163
|
+
* **readdata**: jupyter_analysis_tools.readSSFZ cmdline tool to convert .SSFZ to .JSON and diff-compare .SSFZ files (their metadata) ([`46dc633`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/46dc6338052a9dd875326d2a38cc5b6621439270))
|
|
164
|
+
|
|
165
|
+
### Refactoring
|
|
166
|
+
|
|
167
|
+
* **utils**: formatting ([`b23f195`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b23f1957149a9ae77a28f330eba3249d3fe3d2e5))
|
|
168
|
+
|
|
169
|
+
## v1.4.3 (2025-08-01)
|
|
170
|
+
|
|
171
|
+
### Bug fixes
|
|
172
|
+
|
|
173
|
+
* **utils**: makeNetworkdriveAbsolute() should return input path if no changes needed ([`2ec96d7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2ec96d7066a3473c6d27a6e6d01c640f6c142346))
|
|
174
|
+
|
|
175
|
+
## v1.4.2 (2025-08-01)
|
|
176
|
+
|
|
177
|
+
### Bug fixes
|
|
178
|
+
|
|
179
|
+
* **utils**: makeNetworkdriveAbsolute() with FQDN resolution ([`f4591fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f4591fb46dcfeafbb1f63c4323efbb8aea302a92))
|
|
180
|
+
|
|
181
|
+
## v1.4.1 (2025-08-01)
|
|
182
|
+
|
|
183
|
+
### Bug fixes
|
|
184
|
+
|
|
185
|
+
* **utils**: networkdriveMapping() for Linux, with tests ([`3f4deeb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3f4deebdf57cc9162121c26d5d7d8484f1f0ec63))
|
|
186
|
+
|
|
187
|
+
### Testing
|
|
188
|
+
|
|
189
|
+
* **utils**: remove debug output, should work now ([`1117c89`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1117c89d4206c6880373e3b8765dff6e48d3ccd5))
|
|
190
|
+
|
|
191
|
+
## v1.4.0 (2025-07-28)
|
|
192
|
+
|
|
193
|
+
### Continuous integration
|
|
194
|
+
|
|
195
|
+
* **dependencies**: removed unused requirements ([`592bfe1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/592bfe1e592cf3776dc626d0df453d95e527f8b8))
|
|
196
|
+
|
|
197
|
+
### Documentation
|
|
198
|
+
|
|
199
|
+
* **readdata**: function docstrings and clearer function arguments/variables ([`365effa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/365effa474e700beb5e9194a75f4ceb8eb9c9e7e))
|
|
200
|
+
|
|
201
|
+
* **Changelog&Readme**: updated by template ([`ab2efa8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ab2efa808b7c96b9bf63fdb333c09f070c19b754))
|
|
202
|
+
|
|
203
|
+
* **readme**: note on reapplying project template ([`a8d0176`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a8d01764645c9996bb1e2af60ba6c2d1ee33363a))
|
|
204
|
+
|
|
205
|
+
* **readme**: .rst version not needed anymore ([`a59e9a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a59e9a81b7165c67f6c02906d0266d93f7deaca3))
|
|
206
|
+
|
|
207
|
+
### Features
|
|
208
|
+
|
|
209
|
+
* **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))
|
|
210
|
+
|
|
211
|
+
* **Utils**: naturalKey() can be used as sort key for natural file sorting ([`a60f186`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a60f1864a87c435a165cebc885f0b55de52db796))
|
|
212
|
+
|
|
213
|
+
* feat: readSSFZ() convenience function ([`c3e882b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c3e882bc1d26be578b41c60c1f6b0df94cd83025))
|
|
214
|
+
|
|
215
|
+
## v1.3.2 (2025-07-23)
|
|
216
|
+
|
|
217
|
+
### Bug fixes
|
|
218
|
+
|
|
219
|
+
* **Project**: let the template generate supported python versions ([`8acfa6d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8acfa6d337ea4b8b92f8ea623e961af1be9a0f17))
|
|
220
|
+
|
|
221
|
+
### Continuous integration
|
|
222
|
+
|
|
223
|
+
* **coverage**: revert config regression for coverage merging ([`dffe265`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dffe265af9779253a698f241e725d0ea03ea2979))
|
|
224
|
+
|
|
225
|
+
### Documentation
|
|
226
|
+
|
|
227
|
+
* **readme**: additional fix for readme.md ([`795046f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/795046f73ada0ae85b4eb050c8453cc096c43122))
|
|
228
|
+
|
|
229
|
+
* **readme**: in markdown format for combining with changelog ([`eb6b904`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/eb6b904136697ddc2427369a605058e464d49351))
|
|
230
|
+
|
|
231
|
+
* **readme**: use markdown format to allow combining with changelog on PyPI ([`395b2c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/395b2c0c72232e9109ca50c5b84a7fce2d423df4))
|
|
232
|
+
|
|
233
|
+
## v1.3.1 (2025-07-23)
|
|
234
|
+
|
|
235
|
+
### Bug fixes
|
|
236
|
+
|
|
237
|
+
* **Project**: update manifest and flake8 config, reapplied template ([`c98c648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c98c6489423a45d8a195fda32396ea9d9d18b9eb))
|
|
238
|
+
|
|
239
|
+
### Code style
|
|
240
|
+
|
|
241
|
+
* **utils**: satisfy flake8 ([`2e3dc36`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e3dc36ef21e60f4fe7b8caea567411cc69967c0))
|
|
242
|
+
|
|
243
|
+
### Continuous integration
|
|
244
|
+
|
|
245
|
+
* **semantic-release**: replace .cookiecutterrc by .copier-answers.yml ([`2030c88`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2030c88dfb0ca69ac332380e33b3baed9cb6cf44))
|
|
246
|
+
|
|
247
|
+
* **coverage**: coverage-report fix ([`1bd26b7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1bd26b71abcb090ef32cb2fbdd05b978bce5144c))
|
|
248
|
+
|
|
249
|
+
* **GitHub Workflows**: remove templates, rendered by *copier update* ([`8a637a5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8a637a5b34df4a3ec6a4e8cae97a9d3e24ad2e5c))
|
|
250
|
+
|
|
251
|
+
* **GitHub Workflow**: publish depends on all other job to be successful ([`efc1f22`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efc1f223aa2da882d43b27406a2f20113c2c8879))
|
|
252
|
+
|
|
253
|
+
* **Template**: latest GitHub Workflow templates applied ([`7d87906`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7d87906c852cb2b57704c45db0b19c7a1ae513a2))
|
|
254
|
+
|
|
255
|
+
* **coverage**: fix path name matching rules ([`37bd2d9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/37bd2d93a8fe10a3355feee6779f45bd9161a88b))
|
|
256
|
+
|
|
257
|
+
### Documentation
|
|
258
|
+
|
|
259
|
+
* **Copyright years**: update ([`cee35e6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cee35e6fe92ae27575bd7fb4a7a2638cd1c931b2))
|
|
260
|
+
|
|
261
|
+
* **Contributions**: Authors update ([`dd5a5c4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/dd5a5c4d81732821057bcc200f462159cffa760b))
|
|
262
|
+
|
|
263
|
+
### Refactoring
|
|
264
|
+
|
|
265
|
+
* **Project**: GitHub Workflow templates fixed ([`b346b28`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b346b282332f0f7f81b724509a4004e6a69d7791))
|
|
266
|
+
|
|
267
|
+
* **Project**: GitHub Workflow templates updated ([`235c4d9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/235c4d9c53997fdf4c08913361fb57167939cd7c))
|
|
268
|
+
|
|
269
|
+
* **Project**: switching to copier for project template with update mechanism ([`0d3064b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0d3064b8cef45667b0964aab248b583424946207))
|
|
270
|
+
|
|
271
|
+
## v1.3.0 (2025-07-16)
|
|
272
|
+
|
|
273
|
+
### Bug fixes
|
|
274
|
+
|
|
275
|
+
* **utils.extract7z**: informative info message ([`80d2f71`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/80d2f7134992d59f0bfd7f5e7bc27772f77cd452))
|
|
276
|
+
|
|
277
|
+
### Continuous integration
|
|
278
|
+
|
|
279
|
+
* **coverage**: fix coverage artifact name for multiple matrix.os ([`f471599`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f471599b8c86e29fd20b78f7cbd9291c3a6dd98a))
|
|
280
|
+
|
|
281
|
+
* **testing**: test on Windows as well ([`4a83c39`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a83c3924bcb820ef0728af40b86a0f6622dfef2))
|
|
282
|
+
|
|
283
|
+
### Features
|
|
284
|
+
|
|
285
|
+
* **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))
|
|
286
|
+
|
|
287
|
+
## v1.2.2 (2025-07-15)
|
|
288
|
+
|
|
289
|
+
### Bug fixes
|
|
290
|
+
|
|
291
|
+
* **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))
|
|
292
|
+
|
|
293
|
+
### Documentation
|
|
294
|
+
|
|
295
|
+
* **pyproject**: revert specify readme+changelog document types ([`1baa762`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1baa762d441fe0a1b7b663b9d0589de857277426))
|
|
296
|
+
|
|
297
|
+
* **pyproject**: specify readme+changelog document types to render overview on pypi correctly ([`6e4d1e5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e4d1e56640b604f971ddca8dabd8d1aff5c9bf1))
|
|
298
|
+
|
|
299
|
+
* **ghpages**: make sure .nojekyll exists after purging old html docs ([`4847845`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4847845cc06884b6e589b26897e83411d649ef4d))
|
|
300
|
+
|
|
301
|
+
## v1.2.1 (2025-07-11)
|
|
302
|
+
|
|
303
|
+
### Bug fixes
|
|
304
|
+
|
|
305
|
+
* **readme**: trigger new version after style changes ([`8b2b5e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8b2b5e93c0f24ae59afaa764abdc508e994946b4))
|
|
306
|
+
|
|
307
|
+
### Code style
|
|
308
|
+
|
|
309
|
+
* **__init__**: imports format ([`6f07790`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6f07790a04e43736b1c0fbce0eac54d0b661a7cf))
|
|
310
|
+
|
|
311
|
+
* **utils**: satisfy flake8 ([`9657474`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9657474e94a4d9887c4a6b653e0ffa403e666d02))
|
|
312
|
+
|
|
313
|
+
* **readdata**: satisfy flake8 ([`36bf6e8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/36bf6e8be67a2ebd345c5557c2352710bcebed82))
|
|
314
|
+
|
|
315
|
+
### Continuous integration
|
|
316
|
+
|
|
317
|
+
* **workflow**: publish only if the docs are good ([`a663ed3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a663ed3d1fd87079a4fd7cf419132a129280a562))
|
|
318
|
+
|
|
319
|
+
### Testing
|
|
320
|
+
|
|
321
|
+
* **utils**: fix imports ([`ddd5369`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ddd5369b8037f583c6900aea25522a56126c9d32))
|
|
322
|
+
|
|
323
|
+
## v1.2.0 (2025-07-11)
|
|
324
|
+
|
|
325
|
+
### Features
|
|
326
|
+
|
|
327
|
+
* **readdata**: readSSF() renamed from readSession(), tests added with expected JSON output ([`e2197f6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e2197f6bcb032c1bc1a9a7435e024dda763228c4))
|
|
328
|
+
|
|
329
|
+
* **readPDHmeta**: routine for reading metadata part from .PDH and .SSF files ([`ea6a1d5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ea6a1d554f3763fc05022ae8e4e8909f0993cd43))
|
|
330
|
+
|
|
331
|
+
### Testing
|
|
332
|
+
|
|
333
|
+
* **readdata**: path separator depends on platform ([`1b2866f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1b2866f13307c2cf2dedc59f36d7372442ddbfd8))
|
|
334
|
+
|
|
335
|
+
* **readdata**: testdata files and testing, using pathlib instead of old os.path ([`aeacfa4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/aeacfa4a949d7293f2cd3ce5e3004fddf20ecc02))
|
|
336
|
+
|
|
337
|
+
## v1.1.0 (2025-07-10)
|
|
338
|
+
|
|
339
|
+
### Bug fixes
|
|
340
|
+
|
|
341
|
+
* **packaging**: add dependencies for project and testing ([`2729a45`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2729a45958893c9acd07af9463bbf7d657db626b))
|
|
342
|
+
|
|
343
|
+
### Documentation
|
|
344
|
+
|
|
345
|
+
* **utils**: reformat doc strings ([`1cf9b9b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1cf9b9b969e075a75a41e19bfb526378b68a0ed7))
|
|
346
|
+
|
|
347
|
+
### Features
|
|
348
|
+
|
|
349
|
+
* **utils**: addEnvScriptsToPATH() ([`a8c22e0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a8c22e0d37a5627d5955c1f7f7eebcb0bc99206e))
|
|
350
|
+
|
|
351
|
+
* **notebook_utils**: remove method for finding notebook file path currentNBpath() ([`13a5a60`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/13a5a60436c7926c478f2ab3f2c309a86b653218))
|
|
352
|
+
|
|
353
|
+
### Refactoring
|
|
354
|
+
|
|
355
|
+
* **utils**: appendToPATH() using pathlib, verifed test included ([`35f37fc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/35f37fc19cdcf4b575dc0525400f3c0212bb0faf))
|
|
356
|
+
|
|
357
|
+
### Testing
|
|
358
|
+
|
|
359
|
+
* **readdata**: test data for reading PDH and SSFZ ([`9b919d2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9b919d24e1fa5679b49cebf576e471d6e4e9b655))
|
|
360
|
+
|
|
361
|
+
## v1.0.0 (2025-07-09)
|
|
362
|
+
|
|
363
|
+
### Bug fixes
|
|
364
|
+
|
|
365
|
+
* **packaging**: add required dependency packages to project config ([`43076e2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/43076e2fd27e511545d8f1ec12752435cf5153c6))
|
|
366
|
+
|
|
367
|
+
## v0.1.8 (2025-01-30)
|
|
368
|
+
|
|
369
|
+
### Bug fixes
|
|
370
|
+
|
|
371
|
+
* **distrib**: scipy.integrate.simps does not exist in recent scipy versions ([`b59edc1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b59edc18a6df3bbee23a3ba6e8b8412c294c20d1))
|
|
372
|
+
|
|
373
|
+
### Continuous integration
|
|
374
|
+
|
|
375
|
+
* **changelog**: format commit by using their scope only, not repeating the tag ([`6b72fe7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6b72fe766d121d7ea38c452d093368f84760155e))
|
|
376
|
+
|
|
377
|
+
* **semver**: allow message tag *enh* for enhancements ([`0810b4f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0810b4fd58e1b2383313496b657a800078260c83))
|
|
378
|
+
|
|
379
|
+
### Documentation
|
|
380
|
+
|
|
381
|
+
* **Changelog**: use semantic-release detected scope if available, unchange summary otherwise ([`ca803e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ca803e71d1a5915fc72a4a2feea55616533ff54e))
|
|
382
|
+
|
|
383
|
+
* **Changelog**: omit *empty* versions without relevant changes ([`87b7f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/87b7f2360c5224a6570f8687e8008e2293b81ddb))
|
|
384
|
+
|
|
385
|
+
* **index**: show link to github project on left sidebar ([`3fad5a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3fad5a870801904a636a114d70ff418886c3f2a6))
|
|
386
|
+
|
|
387
|
+
* **Changelog**: don't show *chore* changes on automated build config (CI) ([`10c7ee3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10c7ee3190969322b3e19b5ff0ce5e1e911bff59))
|
|
388
|
+
|
|
389
|
+
* **Changelog**: exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
|
|
390
|
+
|
|
391
|
+
## v0.1.7 (2024-03-26)
|
|
392
|
+
|
|
393
|
+
### Bug fixes
|
|
394
|
+
|
|
395
|
+
* **distrib**: Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
|
|
396
|
+
|
|
397
|
+
### Refactoring
|
|
398
|
+
|
|
399
|
+
* **notebook_utils**: whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
|
|
400
|
+
|
|
401
|
+
## v0.1.6 (2024-03-25)
|
|
402
|
+
|
|
403
|
+
### Bug fixes
|
|
404
|
+
|
|
405
|
+
* **notebook_utils**: notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
|
|
406
|
+
|
|
407
|
+
## v0.1.6-dev.1 (2023-03-27)
|
|
408
|
+
|
|
409
|
+
### Documentation
|
|
410
|
+
|
|
411
|
+
* **analysis**: minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
|
|
412
|
+
|
|
413
|
+
## v0.1.5 (2023-03-27)
|
|
414
|
+
|
|
415
|
+
### Bug fixes
|
|
416
|
+
|
|
417
|
+
* **reBin**: module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
|
|
418
|
+
|
|
419
|
+
### Code style
|
|
420
|
+
|
|
421
|
+
* **format**: fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
|
|
422
|
+
|
|
423
|
+
* **binning**: fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
|
|
424
|
+
|
|
425
|
+
### Documentation
|
|
426
|
+
|
|
427
|
+
* **cleanup**: removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
|
|
428
|
+
|
|
429
|
+
* **format**: fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
|
|
430
|
+
|
|
431
|
+
## v0.1.5-dev.1 (2023-03-27)
|
|
432
|
+
|
|
433
|
+
### Code style
|
|
434
|
+
|
|
435
|
+
* **config**: string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
|
|
436
|
+
|
|
437
|
+
### Documentation
|
|
438
|
+
|
|
439
|
+
* **General**: config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
|
|
440
|
+
|
|
441
|
+
## v0.1.4 (2023-03-03)
|
|
442
|
+
|
|
443
|
+
### Bug fixes
|
|
444
|
+
|
|
445
|
+
* **readme**: license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
|
|
446
|
+
|
|
447
|
+
## v0.1.3 (2023-03-03)
|
|
448
|
+
|
|
449
|
+
### Bug fixes
|
|
450
|
+
|
|
451
|
+
* **tox**: clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
|
|
452
|
+
|
|
453
|
+
* **Package**: cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
|
|
454
|
+
|
|
455
|
+
* **tox**: cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
|
|
456
|
+
|
|
457
|
+
* **GitHubAction**: migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
|
|
458
|
+
|
|
459
|
+
### Code style
|
|
460
|
+
|
|
461
|
+
* **pyproject.toml**: use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
|
|
462
|
+
|
|
463
|
+
### Documentation
|
|
464
|
+
|
|
465
|
+
* **readme**: adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
|
|
466
|
+
|
|
467
|
+
* **readme**: using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
|
|
468
|
+
|
|
469
|
+
* **Package**: update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
|
|
470
|
+
|
|
471
|
+
* **comments**: add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
|
|
472
|
+
|
|
473
|
+
### Refactoring
|
|
474
|
+
|
|
475
|
+
* **docs**: config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
|
|
476
|
+
|
|
477
|
+
* **metadata**: update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
|
|
478
|
+
|
|
479
|
+
### Testing
|
|
480
|
+
|
|
481
|
+
* **tox**: find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
|
|
482
|
+
|
|
483
|
+
## v0.1.2 (2023-02-24)
|
|
484
|
+
|
|
485
|
+
### Bug fixes
|
|
486
|
+
|
|
487
|
+
* **Documentation**: doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
|
|
488
|
+
|
|
489
|
+
### Documentation
|
|
490
|
+
|
|
491
|
+
* **distrib**: generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
|
|
492
|
+
|
|
493
|
+
## v0.1.2-dev.1 (2023-02-24)
|
|
494
|
+
|
|
495
|
+
### Documentation
|
|
496
|
+
|
|
497
|
+
* **utils**: generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
|
|
498
|
+
|
|
499
|
+
### Unknown Scope
|
|
500
|
+
|
|
501
|
+
* v0.1.1 ([`738fdd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/738fdd44b27881360f51f540f28cda4aed2e9005))
|
|
502
|
+
|
|
503
|
+
## v0.1.1 (2023-02-24)
|
|
504
|
+
|
|
505
|
+
### Bug fixes
|
|
506
|
+
|
|
507
|
+
* **docs**: allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
|
|
508
|
+
|
|
509
|
+
## v0.1.1-dev.4 (2023-02-23)
|
|
510
|
+
|
|
511
|
+
### Documentation
|
|
512
|
+
|
|
513
|
+
* **readme**: updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
|
|
514
|
+
|
|
515
|
+
## v0.1.1-dev.1 (2023-02-23)
|
|
516
|
+
|
|
517
|
+
### Bug fixes
|
|
518
|
+
|
|
519
|
+
* **tox**: removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
|
|
520
|
+
|
|
521
|
+
### Documentation
|
|
522
|
+
|
|
523
|
+
* **config**: clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
|
|
524
|
+
|
|
525
|
+
* docs: removed disabled config ([`3059ff9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3059ff9fba6a17b845441cd283c0f498c05beab2))
|
|
526
|
+
|
|
527
|
+
* docs: disabled incompatible sidebar config with furo theme ([`61959be`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61959be18f26e304042c21872f50dda23635caae))
|
|
528
|
+
|
|
529
|
+
### Unknown Scope
|
|
530
|
+
|
|
531
|
+
* added tox-wheel to ci required packages ([`7eae72c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7eae72c4a2e977c3efc56b5d9c8da76d67d44536))
|
|
532
|
+
|
|
533
|
+
* readme: updated badge for docs ([`6e78a50`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e78a50e5b9b7c47498cdb7bc3c4a493a1cacfe3))
|
|
534
|
+
|
|
535
|
+
* comments added ([`af59a8a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/af59a8a01d7891a35a2c1b9a76f303b5dfb1139a))
|
|
536
|
+
|
|
537
|
+
* readme: fixed link to coverage report page ([`1e173dc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1e173dc08abec18fb231dc56432bab3b1244b614))
|
|
538
|
+
|
|
539
|
+
* docs env needs toml module for reading values from pyproject.toml ([`6a2d755`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6a2d7555ce44ff820f3375dca9cd0714a2e54c49))
|
|
540
|
+
|
|
541
|
+
* applying isort config ([`02c6bbc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/02c6bbc9cd0cd06375bd263efb072d9f0116ac69))
|
|
542
|
+
|
|
543
|
+
* updated isort config ([`78e38e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/78e38e9d298bc384695c9104195f749cdcc6a52d))
|
|
544
|
+
|
|
545
|
+
* docs config: using urls defined in pyproject.toml ([`33d5f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/33d5f2338e3a95212c21396d9007bac1495f30a8))
|
|
546
|
+
|
|
547
|
+
* moving isort config to separate file, not picked up from pyproject in a pre-commit hook ([`bfaf1e0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bfaf1e0ab5be225e5e4c34ffc8b1ea8bedb59688))
|
|
548
|
+
|
|
549
|
+
* pre-commit uses pycqa repo for isort ([`4b4a31c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4b4a31c15e9a07455fe9796e17ddbce5f23456ed))
|
|
550
|
+
|
|
551
|
+
* updated pre-commit hook versions ([`4fdec5c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4fdec5c7bab285cb53665d23d063c3ef117ce077))
|
|
552
|
+
|
|
553
|
+
* docs switching theme to furo ([`ceab414`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ceab4148b9fbac53f5ffd936da15f39bedfad968))
|
|
554
|
+
|
|
555
|
+
* moved project meta data from setup.py to pyproject.toml ([`a73f9a7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a73f9a7c52df781bffcf388a2e5932573bbc51a7))
|
|
556
|
+
|
|
557
|
+
* removed obsolete dependency from github action template ([`0d071bc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0d071bc80d627395a569d007f05ba26e880ad28b))
|
|
558
|
+
|
|
559
|
+
* tox: removed coverage combine for single runner, useless ([`831fa6b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/831fa6b16ac6053dfff570ca3098e4610709b039))
|
|
560
|
+
|
|
561
|
+
* tox: updated bootstrap template for github actions ([`47528b8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/47528b8c2705a4f80339561d877f14038ab19691))
|
|
562
|
+
|
|
563
|
+
* tox: build env for package building ([`91969bb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/91969bbe7bf7e69f006e439166db2d7ff62a063e))
|
|
564
|
+
|
|
565
|
+
* tox.docs: generating placeholder for github pages; ([`bcaaa54`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bcaaa5448d764b7969f1885740b4914df74ed965))
|
|
566
|
+
|
|
567
|
+
* tox: coverage combine command added ([`bc45701`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bc45701fc9cf656aa191b2b61df60d10f448be4f))
|
|
568
|
+
|
|
569
|
+
* readme: removed unused table def ([`9665ccf`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9665ccf5f5f3d753135dcdf477c09f9212f512eb))
|
|
570
|
+
|
|
571
|
+
* readme: coverage badge added (from report) ([`6570cf1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6570cf1a6c7036a8998536740867819a52ed084b))
|
|
572
|
+
|
|
573
|
+
* tox config format fixes ([`210b5e3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/210b5e39a37ecdf1abaf083379e05fa8d5e6726a))
|
|
574
|
+
|
|
575
|
+
* readme: download numbers from pypi ([`7082226`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7082226643aef7bcdd4d42d3109653e77fde230c))
|
|
576
|
+
|
|
577
|
+
* readme: minor formatting edit ([`645e0f8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/645e0f8f87965e5e42e807bbbb573b861ab7f1c9))
|
|
578
|
+
|
|
579
|
+
* readme: adjusted badges ([`343dc81`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/343dc812104a84eea4fe028656edb4befaefb8e5))
|
|
580
|
+
|
|
581
|
+
* fixed broken link ([`e41268d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e41268d735e8ad78692db43b8581975993946782))
|
|
582
|
+
|
|
583
|
+
* removed missing tbump.toml from manifest ([`1a54907`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1a549076017a9608d33b428e750216db8d135ead))
|
|
584
|
+
|
|
585
|
+
* Dependabot config ([`4578709`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4578709355e0d4ad839b61f42ff2af01c85ee7ff))
|
|
586
|
+
|
|
587
|
+
## v0.1.0 (2022-11-10)
|
|
588
|
+
|
|
589
|
+
### Documentation
|
|
590
|
+
|
|
591
|
+
* docs: let sphinx use numpy directly instead of mockup ([`9b6ec6d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9b6ec6d3f4123b8bfb0934cdb2e8a0df0933daee))
|
|
592
|
+
|
|
593
|
+
* docs: sphinx extlinks syntax updated ([`0866ee7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0866ee71cbfa5b8f1134858a44fe8e360707faec))
|
|
594
|
+
|
|
595
|
+
* docs: URL updated ([`146039c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/146039cc13670cfc62ca295935567e14ba38d738))
|
|
596
|
+
|
|
597
|
+
* docs: fix docs gh workflow spec ([`49d7e93`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/49d7e9305987cb918e3ea3c812c7aeac2fe36c56))
|
|
598
|
+
|
|
599
|
+
* docs: fix gh workflow spec ([`b977751`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b97775186b5554a9bf260c6ad34ed63481571eae))
|
|
600
|
+
|
|
601
|
+
* docs: fix gh workflow spec ([`e23c22c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e23c22cae9045a75c7ff41ddffdd44c93fd027da))
|
|
602
|
+
|
|
603
|
+
* docs: fix gh workflow spec ([`024295d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/024295d797da7274071cf54085d614a2f8e96a53))
|
|
604
|
+
|
|
605
|
+
* docs: fix gh workflow spec ([`12adda9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/12adda94ad39ce9c4e61687cdbf829c196ff81ed))
|
|
606
|
+
|
|
607
|
+
* docs: fix gh workflow spec ([`f062d12`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f062d12d3f2cb430c643228573cf76aef31dfee6))
|
|
608
|
+
|
|
609
|
+
* docs: updated urls and gh workflow spec ([`66a0704`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/66a07049567a524a82633547c8006ed1630238c1))
|
|
610
|
+
|
|
611
|
+
### Unknown Scope
|
|
612
|
+
|
|
613
|
+
* tbump config updated ([`e17de91`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e17de9111659992b9419efc7e07c58172737e285))
|
|
614
|
+
|
|
615
|
+
* package classifiers and readme updated ([`4cafdca`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4cafdca402cb8171b7ab32de4c93feeb94e00af4))
|
|
616
|
+
|
|
617
|
+
* tox: removed passenv=*, more strictness ([`818ffa1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/818ffa1a590e42aa2599679755ffaeea794d346f))
|
|
618
|
+
|
|
619
|
+
* moved tbump config into pyproject file ([`b8b9881`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b8b9881fec80199ec5e730d33fbb5a427acfd9c1))
|
|
620
|
+
|
|
621
|
+
* isort excludes .ipynb_checkpoints ([`db90f62`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/db90f62015abc54088eae146419863ff9a1c38ac))
|
|
622
|
+
|
|
623
|
+
* flake8 config updated ([`20a46bc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/20a46bc9ca8d09f79795d10b91ee759042045f08))
|
|
624
|
+
|
|
625
|
+
* reformatting according to pre-commit config ([`54fd524`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/54fd524c6791ec3ac6a7f95a153bf739c35bf8d1))
|
|
626
|
+
|
|
627
|
+
* tox:check: let check-manifest ignore macOS meta files ([`d301bd2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d301bd2d02d5030e7c50071187bb6f4ea895c63e))
|
|
628
|
+
|
|
629
|
+
* gh: removed obsolete testing.yml ([`1ce898d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1ce898dfc5c547bbef27e159cc377478f26d39d5))
|
|
630
|
+
|
|
631
|
+
* readme: updated badges ([`790bf44`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/790bf44e76f1f25959672536cbe6c588efe2ac17))
|
|
632
|
+
|
|
633
|
+
* readme: updated badges ([`99ddde2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/99ddde2155dab5bbda3b632d58576a85f3dbf701))
|
|
634
|
+
|
|
635
|
+
* readme: updated badges ([`f18418c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f18418cc52850c6622c4cc0ab6ceb01f4e4839eb))
|
|
636
|
+
|
|
637
|
+
* readme: fixed badges, renamed testing -> tests ([`3efb28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3efb28fdfbef47fd6a776fada5a7f0b8804a4fa7))
|
|
638
|
+
|
|
639
|
+
* removed pypy test environment from github actions ([`17f8515`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/17f8515fda7746b6c43e4e2ff94fedce95e9a2ae))
|
|
640
|
+
|
|
641
|
+
* removed pypy test environment ([`e2cfa0a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e2cfa0adbfdf3b3d927949a5f43e37ae1367911a))
|
|
642
|
+
|
|
643
|
+
* conda_environment.yml not needed anymore ([`b28806f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b28806f0f8aa7faa60b6162b05a84386e72e4f1c))
|
|
644
|
+
|
|
645
|
+
* tested testing config, enabled doctests ([`a273d9d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a273d9d218ca151f19623fd7b978557e23a55ea2))
|
|
646
|
+
|
|
647
|
+
* generate github testing workflow with tox ([`f04bb7b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f04bb7bae96a417d56d545be61423930a210fa4a))
|
|
648
|
+
|
|
649
|
+
* tox:bootstrap: don't fail for macOS .DS_Store files ([`0445011`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0445011ea7721471aa6caee06565062d041a6110))
|
|
650
|
+
|
|
651
|
+
* tox setup added and works partially ([`4956d25`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4956d2573999ed7fd5aeb5dc8f22b99ef5e6c6da))
|
|
652
|
+
|
|
653
|
+
* moved implementation to src subfolder ([`a917c30`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a917c30fbfabd5f14666b36305484f3d8dee8cd6))
|
|
654
|
+
|
|
655
|
+
* updated gitignore ([`2499639`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/24996396b32b4991cfb9450e028f0d73b3fff138))
|
|
656
|
+
|
|
657
|
+
* readme: updated docs gh workflow badge ([`3bb0b40`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3bb0b40ffd5c95869151efa5274e1b4e9bc5ec60))
|
|
658
|
+
|
|
659
|
+
* documentation setup ([`fa494d0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/fa494d05c78ec8ccd6d98caedd0c67479bc301bb))
|
|
660
|
+
|
|
661
|
+
* editorconfig added ([`61299aa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61299aa1904401865aa169112acdada96d29f5fe))
|
|
662
|
+
|
|
663
|
+
* pre-commit config added, running reformatter, import sort and flake8 linter for the first time ([`0537b68`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0537b68cc3e139911e7b65b2bb4d72ca9d85dac9))
|
|
664
|
+
|
|
665
|
+
* let git ignore macOS meta data files ([`6e35aa3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e35aa33bbacb4bf3a2dc041c59aee17ae793f13))
|
|
666
|
+
|
|
667
|
+
* distrib: removed radius-specific scale factors when converting (LogNorm) distribution parameters ([`bf7bcca`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bf7bcca230d1d3aeb0c3aea41035b71180d33a01))
|
|
668
|
+
|
|
669
|
+
* distrib.Distribution.xlabel added ([`30ad6c1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30ad6c138545afb08f1c68466405f8dd09d0cfab))
|
|
670
|
+
|
|
671
|
+
* indicate python raw string to protect LaTeX commands ([`4483cb5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4483cb525b50aa04a5f9105a1910e333880e3110))
|
|
672
|
+
|
|
673
|
+
* utils.setPackage() prepend local module search path ([`247973a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/247973af69237825dd8f4def2accef20b2941c47))
|
|
674
|
+
|
|
675
|
+
* distrib: handling logNorm params *distrPar* as dict now, doctests added ([`0aad717`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0aad7179132ec90f715badd0f89e99adb86e7016))
|
|
676
|
+
|
|
677
|
+
* readdata: fixed imports, allow disabling info output by *print_filename* arg ([`aa1cf22`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/aa1cf22f9af49db58a43be7feaf76206d6a84af5))
|
|
678
|
+
|
|
679
|
+
* readPDH replaced by a pandas.read_csv wrapper ([`9d3c6a4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d3c6a45b5875e45289d6678695b2cc3d387cbfb))
|
|
680
|
+
|
|
681
|
+
* fixed __init__ ([`55e9d20`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/55e9d20dc75fad8e73c459a96d351043ace693f4))
|
|
682
|
+
|
|
683
|
+
* readPDH: detection of XML section updated ([`096521f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/096521f678ca4c8e42161b2b59550a0f8cc636e3))
|
|
684
|
+
|
|
685
|
+
* updated GitHub Action ([`7844e90`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7844e90b2457dea869fa96cdd9b1d1e5f341439f))
|
|
686
|
+
|
|
687
|
+
* utils: moved jupyter notebook related helper to separate file/module ([`4bbee4e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4bbee4ef4dde0a8591215afdd527f74f9b44d303))
|
|
688
|
+
|
|
689
|
+
* testing workflow runs doctest on utils module ([`6d19fd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6d19fd4a2bf9dd1250707bc5b02f8d375865aff3))
|
|
690
|
+
|
|
691
|
+
* utils.isList(): doctest added ([`f27855d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f27855dff40990b98a901d0f8d0f7981deae3332))
|
|
692
|
+
|
|
693
|
+
* testing workflow: fixed python versions ([`a71e60e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a71e60ea8173d0549b8f8bfd3e9d03d93dab52e8))
|
|
694
|
+
|
|
695
|
+
* defined new github action for running tests ([`3589299`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3589299bd25d5c9e7822fb96a9f73badb43d39f1))
|
|
696
|
+
|
|
697
|
+
* Distribution.uncertRatioMedian() added ([`8a2ef2d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8a2ef2d44237c33c617cad02ce16309b1984f648))
|
|
698
|
+
|
|
699
|
+
* distrib.getLargestPeaks: fixed sort order of largest peaks ([`9cca28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9cca28f442a75bba1097c670ab3c3c10d6578fa2))
|
|
700
|
+
|
|
701
|
+
* show LogNorm params for each peak ([`64b60e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/64b60e7094ff980dd8eba0a12e83fa1dd5f4ef4c))
|
|
702
|
+
|
|
703
|
+
* introduced distrib.Distribution for finding and plotting peaks ([`6beadf3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6beadf3ae55330ec5ec362263f2afef449fa0080))
|
|
704
|
+
|
|
705
|
+
* analysis.getModZScore() calculates the modified z-score of some data arrays ([`2250a59`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2250a59f4aca728ccf79b041b5e148835afb3182))
|
|
706
|
+
|
|
707
|
+
* distrib.findLocalMinima: skip peaks with less than 5 points ([`712d590`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/712d5904218beb9e129d30fb7f6dedb84e050175))
|
|
708
|
+
|
|
709
|
+
* distrib.findLocalMinima() fail gracefully on single peak ranges ([`45eb76b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/45eb76b5ab67ad0d190c88ff4e6846e16e446994))
|
|
710
|
+
|
|
711
|
+
* plotting.GenericResult with x-axis label ([`1a14688`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1a1468808a0fb0458a6b8a06051ec6dcb7434edd))
|
|
712
|
+
|
|
713
|
+
* missing numpy import ([`8c01e86`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8c01e86c26f0c1a500ad21174189fba1ffb08836))
|
|
714
|
+
|
|
715
|
+
* added plotting.GenericResult ([`96cf6c8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/96cf6c8f7062fce9b83404e3f86658d6a9e73bc4))
|
|
716
|
+
|
|
717
|
+
* distrib.normalizeDistrib: convert pandas.Series to numpy.ndarray first ([`a50f78e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a50f78eded5f12f3204a25046b3b6f4ed6164562))
|
|
718
|
+
|
|
719
|
+
* distrib.findLocalMinima() added ([`0ac94c7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0ac94c760f93bfa53bc823d1ccec8901eb5af306))
|
|
720
|
+
|
|
721
|
+
* distrib.findPeakRanges() filters monotonously increasing/decreasing 'peaks' (artefacts) ([`7b967c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b967c00772bea6adce2e735d9c4f54bc1e70d18))
|
|
722
|
+
|
|
723
|
+
* distrib.distrParFromPeakRanges: convert pandas.Series to numpy.ndarray at the beginning ([`bb19270`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bb192703cece3027d5766f66c8c5a9c27f61df32))
|
|
724
|
+
|
|
725
|
+
* distrib.test: fixed indents, replaced tabs by spaces ([`da8f402`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/da8f40236fd5906bbc8c28a36ce8eadd1f2b8c36))
|
|
726
|
+
|
|
727
|
+
* plotting: increases limit for warning about many plots ([`ef8a6fd`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ef8a6fd7ff86941eef5f45af38d644a1a048bfef))
|
|
728
|
+
|
|
729
|
+
* plotting.plotVertBar() now with kwargs being forwarded to matplotlib ([`35dbce1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/35dbce14a89472aa121483ab96078bcd9270d9f7))
|
|
730
|
+
|
|
731
|
+
* utils.updatedDict() added ([`03fe42c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/03fe42c0702efb7a49493c96f4d5768f72c8e86f))
|
|
732
|
+
|
|
733
|
+
* isList() moved to utils ([`4367a6c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4367a6c2c1245a5c3cfb071afd3bccdd96591cb3))
|
|
734
|
+
|
|
735
|
+
* datalocations.getDataFiles() argument handling lists and non-lists ([`4ee348a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4ee348a8f5caebac6f4c4009e5f999abe05237a0))
|
|
736
|
+
|
|
737
|
+
* datalocations: filtering file names with in-/exclude patterns ([`d65efff`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d65efffa2df938033443ba54fa09570eaf4afbc3))
|
|
738
|
+
|
|
739
|
+
* datalocations.getDataFiles() with filename pattern argument ([`7d10c9c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7d10c9c237f8b48a9c6b8ced05a7bb92c2016ec8))
|
|
740
|
+
|
|
741
|
+
* plotting.createFigure(): fixed argument ([`ba6ae3b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ba6ae3bc2e1ddde3fdda9b9e0bc02b58dcf2ed6b))
|
|
742
|
+
|
|
743
|
+
* added modules for plotting and distribution helpers ([`3472db8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3472db8e9217c9ae0fa1bb3a078e0af04d3328cb))
|
|
744
|
+
|
|
745
|
+
* utils.fmtErr() ([`56457ae`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/56457ae8a37ff474165c2c9959e115f8c341c48c))
|
|
746
|
+
|
|
747
|
+
* utils.grouper() ([`a5ad6aa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a5ad6aaf80c1dc6be417fd20c22c84c93046dd88))
|
|
748
|
+
|
|
749
|
+
* utils.setPackage() added ([`969aae8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/969aae82848b53a0d6257877011dc89e3eb10852))
|
|
750
|
+
|
|
751
|
+
* datalocations module added ([`f4fb7ff`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f4fb7ffd0dcc2eab2319e257d0c8dca5be1d6d75))
|
|
752
|
+
|
|
753
|
+
* utils: OS helpers and for 7-zip added ([`629c0fa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/629c0fab2e2a9012b76e069ed199107ab6e2e179))
|
|
754
|
+
|
|
755
|
+
* utils.setLocaleUTF8() added ([`8dc76f3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8dc76f3be20b754df2631a6655fc5918ceed72d3))
|
|
756
|
+
|
|
757
|
+
* minor: line endings converted to UNIX style ([`45d3535`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/45d353595dcbfdc864a02225475532c4d7825d22))
|
|
758
|
+
|
|
759
|
+
* reBin: removed unnecessary whitespace ([`65e622b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/65e622bae6f73eef4f4d3f946ec038c33e97d50c))
|
|
760
|
+
|
|
761
|
+
* reBin: show help when called without arguments or files ([`1c8244c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1c8244cbfbbfd1373254069bb04062f3e6baeee0))
|
|
762
|
+
|
|
763
|
+
* reBin: fixed python3 compat. ([`05468c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/05468c0784d33fc8e8ecea686f06d0216e7f7aa7))
|
|
764
|
+
|
|
765
|
+
* disabled nbstripout checks ([`8835ff0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8835ff05cf91c42c470c7f572da8af179a9b8866))
|
|
766
|
+
|
|
767
|
+
* license added ([`10bb685`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10bb68573b9b2dd66370bd8bf277d0aa9e354724))
|
|
768
|
+
|
|
769
|
+
* git: check if installed at all ([`80e7328`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/80e73289d376d18ca7ae135e4ae3d0249a724bf2))
|
|
770
|
+
|
|
771
|
+
* handle exception if git submodule is moved out of parent repository ([`fb382bd`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/fb382bd3508c8c35aa796b89e765220280cec6c1))
|
|
772
|
+
|
|
773
|
+
* added showBoolStatus() to pretty print the value of a boolean variable ([`b00316c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b00316c60cd5036750104961e7c10337df5a451a))
|
|
774
|
+
|
|
775
|
+
* added PathSelector in *widgets* module ([`189b56e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/189b56e1a0af30876013bf676577c2bd4d9e1183))
|
|
776
|
+
|
|
777
|
+
* git: using full python path for running nbstripout during checkRepo ([`1fbe3cc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1fbe3cc93f778f69dc34e569fc54d0906268357a))
|
|
778
|
+
|
|
779
|
+
* set git status text always transparent ([`9e5943f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9e5943fac800ff3385cc2ebb058d3c95608533a0))
|
|
780
|
+
|
|
781
|
+
* git: partial transparent git status if repo is clean ([`b2fc0e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b2fc0e9e1020c1fcd36cb2a35ab3edd6cc50feb3))
|
|
782
|
+
|
|
783
|
+
* fixed git module: using subprocess instead of ipython syntax '!' ([`95e7851`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/95e78510aaba7ceeab4515b226f8aad486140424))
|
|
784
|
+
|
|
785
|
+
* functions for git repo status added ([`4c1f620`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4c1f6201707e3bb5591614eae102b8e63abf4972))
|
|
786
|
+
|
|
787
|
+
* fixed encoding header info ([`8375642`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/83756420fab8f3851ce881f54744a2caba20e19d))
|
|
788
|
+
|
|
789
|
+
* use proper boolean operator ([`94fc592`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/94fc59229261b4acf8e6f32027a4649f133291ad))
|
|
790
|
+
|
|
791
|
+
* diff.textconv and filters for IPYNB and XLS files ([`ec97ca4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec97ca423a0353c0d82c4c77b141f3a14602e8c8))
|
|
792
|
+
|
|
793
|
+
* added pycache to gitignore ([`7650b60`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7650b60079190303a1570caaa3c8016ecd74dd92))
|
|
794
|
+
|
|
795
|
+
* fixed module path ([`e7f866a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e7f866a13044a5b064f3b94bfa8cb15159ea9af3))
|
|
796
|
+
|
|
797
|
+
* removed Jupyter startup scripts, not needed here ([`c0e07b0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0e07b0675efe51dff549f7526371947b76e8bff))
|
|
798
|
+
|
|
799
|
+
* init file to make up a proper python module ([`7b984da`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b984da192d03a586941374755514f5b11515bf2))
|
|
800
|
+
|
|
801
|
+
* small-angle scattering data rebinning routine by Brian Pauw ([`eae62d8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/eae62d8f317b19d3b3022ba6285df0df4ecd1f9b))
|
|
802
|
+
|
|
803
|
+
* code for parsing a PDH file ([`af59678`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/af59678ff824dfade45b8c18b83ee390b1f14413))
|
|
804
|
+
|
|
805
|
+
* Jupyter shortcuts added ([`85a8b9b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/85a8b9b6c85065fa1d4491efbf479973e4c8e238))
|
|
806
|
+
|
|
807
|
+
* Initial Commit ([`645ef06`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/645ef06938f90d3219c17f74c23d9e610c5a1753))
|