jupyter-analysis-tools 0.1.7__py3-none-any.whl → 0.1.8__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,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # __init__.py
3
3
 
4
- __version__ = "0.1.7"
4
+ __version__ = "0.1.8"
5
5
 
6
6
  from .binning import reBin
7
7
  from .git import checkRepo, isNBstripoutActivated, isNBstripoutInstalled, isRepo
@@ -17,7 +17,10 @@ from .utils import grouper
17
17
 
18
18
 
19
19
  def integrate(xvec, yvec):
20
- return abs(scipy.integrate.simps(yvec, x=xvec))
20
+ try:
21
+ return abs(scipy.integrate.simps(yvec, x=xvec))
22
+ except AttributeError:
23
+ return abs(scipy.integrate.simpson(yvec, x=xvec))
21
24
 
22
25
 
23
26
  def normalizeDistrib(x, y, u=None):
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: jupyter-analysis-tools
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Yet another Python library with helpers and utilities for data analysis and processing.
5
5
  Author-email: Ingo Breßler <dev@ingobressler.net>
6
6
  License: MIT license
@@ -47,8 +47,8 @@ Yet another Python library with helpers and utilities for data analysis and proc
47
47
  :target: https://pypi.org/project/jupyter-analysis-tools
48
48
  :alt: PyPI Package latest release
49
49
 
50
- .. |commits-since| image:: https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v0.1.7.svg
51
- :target: https://github.com/BAMresearch/jupyter-analysis-tools/compare/v0.1.7...main
50
+ .. |commits-since| image:: https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v0.1.8.svg
51
+ :target: https://github.com/BAMresearch/jupyter-analysis-tools/compare/v0.1.8...main
52
52
  :alt: Commits since latest release
53
53
 
54
54
  .. |license| image:: https://img.shields.io/pypi/l/jupyter-analysis-tools.svg
@@ -121,200 +121,168 @@ Note, to combine the coverage data from all the tox environments run:
121
121
 
122
122
  # CHANGELOG
123
123
 
124
+ ## v0.1.8 (2025-01-30)
124
125
 
125
- ## Unreleased
126
+ ### Bug fixes
126
127
 
127
- ### Documentation
128
-
129
- * docs(Changelog): exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
130
-
131
-
132
-
133
- ## v0.1.7 (2024-03-26)
128
+ * distrib: scipy.integrate.simps does not exist in recent scipy versions ([`b59edc1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b59edc18a6df3bbee23a3ba6e8b8412c294c20d1))
134
129
 
135
- ### Fix
130
+ ### Continuous integration
136
131
 
137
- * fix(distrib): Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
132
+ * changelog: format commit by using their scope only, not repeating the tag ([`6b72fe7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6b72fe766d121d7ea38c452d093368f84760155e))
138
133
 
139
- ### Refactor
134
+ * semver: allow message tag *enh* for enhancements ([`0810b4f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0810b4fd58e1b2383313496b657a800078260c83))
140
135
 
141
- * refactor(notebook_utils): whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
136
+ ### Documentation
142
137
 
138
+ * Changelog: use semantic-release detected scope if available, unchange summary otherwise ([`ca803e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ca803e71d1a5915fc72a4a2feea55616533ff54e))
143
139
 
144
- ## v0.1.6 (2024-03-25)
140
+ * Changelog: omit *empty* versions without relevant changes ([`87b7f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/87b7f2360c5224a6570f8687e8008e2293b81ddb))
145
141
 
146
- ### Fix
142
+ * index: show link to github project on left sidebar ([`3fad5a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3fad5a870801904a636a114d70ff418886c3f2a6))
147
143
 
148
- * fix(notebook_utils): notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
144
+ * Changelog: don't show *chore* changes on automated build config (CI) ([`10c7ee3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10c7ee3190969322b3e19b5ff0ce5e1e911bff59))
149
145
 
146
+ * Changelog: exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
150
147
 
151
- ## v0.1.6-dev.5 (2023-04-20)
148
+ ## v0.1.7 (2024-03-26)
152
149
 
150
+ ### Bug fixes
153
151
 
154
- ## v0.1.6-dev.4 (2023-04-20)
152
+ * distrib: Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
155
153
 
154
+ ### Refactoring
156
155
 
157
- ## v0.1.6-dev.3 (2023-03-28)
156
+ * notebook_utils: whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
158
157
 
158
+ ## v0.1.6 (2024-03-25)
159
159
 
160
- ## v0.1.6-dev.2 (2023-03-27)
160
+ ### Bug fixes
161
161
 
162
+ * notebook_utils: notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
162
163
 
163
164
  ## v0.1.6-dev.1 (2023-03-27)
164
165
 
165
166
  ### Documentation
166
167
 
167
- * docs(analysis): minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
168
-
168
+ * analysis: minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
169
169
 
170
170
  ## v0.1.5 (2023-03-27)
171
171
 
172
- ### Documentation
172
+ ### Bug fixes
173
173
 
174
- * docs(cleanup): removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
174
+ * reBin: module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
175
175
 
176
- * docs(format): fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
176
+ ### Code style
177
177
 
178
- ### Fix
178
+ * format: fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
179
179
 
180
- * fix(reBin): module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
181
-
182
- ### Style
183
-
184
- * style(format): fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
185
-
186
- * style(binning): fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
180
+ * binning: fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
187
181
 
182
+ ### Documentation
188
183
 
189
- ## v0.1.5-dev.2 (2023-03-27)
184
+ * cleanup: removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
190
185
 
186
+ * format: fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
191
187
 
192
188
  ## v0.1.5-dev.1 (2023-03-27)
193
189
 
194
- ### Documentation
195
-
196
- * docs(General): config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
190
+ ### Code style
197
191
 
198
- ### Style
192
+ * config: string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
199
193
 
200
- * style(config): string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
194
+ ### Documentation
201
195
 
196
+ * General: config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
202
197
 
203
198
  ## v0.1.4 (2023-03-03)
204
199
 
205
- ### Fix
206
-
207
- * fix(readme): license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
200
+ ### Bug fixes
208
201
 
202
+ * readme: license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
209
203
 
210
204
  ## v0.1.3 (2023-03-03)
211
205
 
212
- ### Documentation
213
-
214
- * docs(readme): adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
215
-
216
- * docs(readme): using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
206
+ ### Bug fixes
217
207
 
218
- * docs(Package): update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
208
+ * tox: clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
219
209
 
220
- * docs(comments): add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
210
+ * Package: cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
221
211
 
222
- ### Fix
212
+ * tox: cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
223
213
 
224
- * fix(tox): clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
214
+ * GitHubAction: migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
225
215
 
226
- * fix(Package): cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
216
+ ### Code style
227
217
 
228
- * fix(tox): cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
218
+ * pyproject.toml: use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
229
219
 
230
- * fix(GitHubAction): migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
231
-
232
- ### Refactor
233
-
234
- * refactor(docs): config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
235
-
236
- * refactor(metadata): update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
237
-
238
- ### Style
239
-
240
- * style(pyproject.toml): use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
241
-
242
- ### Test
243
-
244
- * test(tox): find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
220
+ ### Documentation
245
221
 
222
+ * readme: adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
246
223
 
247
- ## v0.1.3-dev.4 (2023-02-28)
224
+ * readme: using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
248
225
 
226
+ * Package: update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
249
227
 
250
- ## v0.1.3-dev.3 (2023-02-28)
228
+ * comments: add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
251
229
 
230
+ ### Refactoring
252
231
 
253
- ## v0.1.3-dev.2 (2023-02-27)
232
+ * docs: config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
254
233
 
234
+ * metadata: update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
255
235
 
256
- ## v0.1.3-dev.1 (2023-02-27)
236
+ ### Testing
257
237
 
238
+ * tox: find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
258
239
 
259
240
  ## v0.1.2 (2023-02-24)
260
241
 
261
- ### Documentation
262
-
263
- * docs(distrib): generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
242
+ ### Bug fixes
264
243
 
265
- ### Fix
244
+ * Documentation: doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
266
245
 
267
- * fix(Documentation): doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
246
+ ### Documentation
268
247
 
248
+ * distrib: generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
269
249
 
270
250
  ## v0.1.2-dev.1 (2023-02-24)
271
251
 
272
252
  ### Documentation
273
253
 
274
- * docs(utils): generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
254
+ * utils: generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
275
255
 
276
256
  ### Unknown
277
257
 
278
258
  * v0.1.1 ([`738fdd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/738fdd44b27881360f51f540f28cda4aed2e9005))
279
259
 
280
-
281
260
  ## v0.1.1 (2023-02-24)
282
261
 
283
- ### Fix
284
-
285
- * fix(docs): allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
286
-
287
-
288
- ## v0.1.1-dev.5 (2023-02-23)
262
+ ### Bug fixes
289
263
 
264
+ * docs: allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
290
265
 
291
266
  ## v0.1.1-dev.4 (2023-02-23)
292
267
 
293
268
  ### Documentation
294
269
 
295
- * docs(readme): updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
296
-
297
-
298
- ## v0.1.1-dev.3 (2023-02-23)
299
-
270
+ * readme: updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
300
271
 
301
- ## v0.1.1-dev.2 (2023-02-23)
272
+ ## v0.1.1-dev.1 (2023-02-23)
302
273
 
274
+ ### Bug fixes
303
275
 
304
- ## v0.1.1-dev.1 (2023-02-23)
276
+ * tox: removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
305
277
 
306
278
  ### Documentation
307
279
 
308
- * docs(config): clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
280
+ * config: clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
309
281
 
310
282
  * docs: removed disabled config ([`3059ff9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3059ff9fba6a17b845441cd283c0f498c05beab2))
311
283
 
312
284
  * docs: disabled incompatible sidebar config with furo theme ([`61959be`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61959be18f26e304042c21872f50dda23635caae))
313
285
 
314
- ### Fix
315
-
316
- * fix(tox): removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
317
-
318
286
  ### Unknown
319
287
 
320
288
  * added tox-wheel to ci required packages ([`7eae72c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7eae72c4a2e977c3efc56b5d9c8da76d67d44536))
@@ -373,7 +341,6 @@ Note, to combine the coverage data from all the tox environments run:
373
341
 
374
342
  * Dependabot config ([`4578709`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4578709355e0d4ad839b61f42ff2af01c85ee7ff))
375
343
 
376
-
377
344
  ## v0.1.0 (2022-11-10)
378
345
 
379
346
  ### Documentation
@@ -424,7 +391,7 @@ Note, to combine the coverage data from all the tox environments run:
424
391
 
425
392
  * readme: updated badges ([`f18418c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f18418cc52850c6622c4cc0ab6ceb01f4e4839eb))
426
393
 
427
- * readme: fixed badges, renamed testing -&gt; tests ([`3efb28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3efb28fdfbef47fd6a776fada5a7f0b8804a4fa7))
394
+ * readme: fixed badges, renamed testing -> tests ([`3efb28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3efb28fdfbef47fd6a776fada5a7f0b8804a4fa7))
428
395
 
429
396
  * removed pypy test environment from github actions ([`17f8515`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/17f8515fda7746b6c43e4e2ff94fedce95e9a2ae))
430
397
 
@@ -436,7 +403,7 @@ Note, to combine the coverage data from all the tox environments run:
436
403
 
437
404
  * generate github testing workflow with tox ([`f04bb7b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f04bb7bae96a417d56d545be61423930a210fa4a))
438
405
 
439
- * tox:bootstrap: don&#39;t fail for macOS .DS_Store files ([`0445011`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0445011ea7721471aa6caee06565062d041a6110))
406
+ * tox:bootstrap: don't fail for macOS .DS_Store files ([`0445011`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0445011ea7721471aa6caee06565062d041a6110))
440
407
 
441
408
  * tox setup added and works partially ([`4956d25`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4956d2573999ed7fd5aeb5dc8f22b99ef5e6c6da))
442
409
 
@@ -508,7 +475,7 @@ Note, to combine the coverage data from all the tox environments run:
508
475
 
509
476
  * distrib.findLocalMinima() added ([`0ac94c7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0ac94c760f93bfa53bc823d1ccec8901eb5af306))
510
477
 
511
- * distrib.findPeakRanges() filters monotonously increasing/decreasing &#39;peaks&#39; (artefacts) ([`7b967c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b967c00772bea6adce2e735d9c4f54bc1e70d18))
478
+ * distrib.findPeakRanges() filters monotonously increasing/decreasing 'peaks' (artefacts) ([`7b967c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b967c00772bea6adce2e735d9c4f54bc1e70d18))
512
479
 
513
480
  * distrib.distrParFromPeakRanges: convert pandas.Series to numpy.ndarray at the beginning ([`bb19270`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bb192703cece3027d5766f66c8c5a9c27f61df32))
514
481
 
@@ -570,7 +537,7 @@ Note, to combine the coverage data from all the tox environments run:
570
537
 
571
538
  * git: partial transparent git status if repo is clean ([`b2fc0e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b2fc0e9e1020c1fcd36cb2a35ab3edd6cc50feb3))
572
539
 
573
- * fixed git module: using subprocess instead of ipython syntax &#39;!&#39; ([`95e7851`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/95e78510aaba7ceeab4515b226f8aad486140424))
540
+ * fixed git module: using subprocess instead of ipython syntax '!' ([`95e7851`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/95e78510aaba7ceeab4515b226f8aad486140424))
574
541
 
575
542
  * functions for git repo status added ([`4c1f620`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4c1f6201707e3bb5591614eae102b8e63abf4972))
576
543
 
@@ -1,17 +1,17 @@
1
- jupyter_analysis_tools/__init__.py,sha256=szPCI0oqvdZmsDh1iREvUtxQqX7oWAhv1yhRJe90sg0,419
1
+ jupyter_analysis_tools/__init__.py,sha256=pNI5YyrwFDfQvWVZghpAZ9cPk8UvxByEFhw6v47kSeg,419
2
2
  jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
3
  jupyter_analysis_tools/binning.py,sha256=unsvOGl_jQSPlqZXafSgFeBPZwy0AidVKL_3-XIwPF8,14557
4
4
  jupyter_analysis_tools/datalocations.py,sha256=BakfiZOMcBwp-_DAn7l57lGWZmZGNnk0j73V75nLBUA,4322
5
- jupyter_analysis_tools/distrib.py,sha256=oPR8dIZIphqPJ8wuBZTLAdmFHqkjGg6XZdx3N7IMo3Y,16417
5
+ jupyter_analysis_tools/distrib.py,sha256=uyh2jXDdXR6dfd36CAoE5_psoFF0bfA6l1wletPD7Xo,16515
6
6
  jupyter_analysis_tools/git.py,sha256=mqSk5nnAFrmk1_2KFuKVrDWOkRbGbAQOq2N1DfxhNpg,2216
7
7
  jupyter_analysis_tools/notebook_utils.py,sha256=5MwYjUy4Skn9goFOP_qKFPPBN4VkffBishHVSD_fPFo,1263
8
8
  jupyter_analysis_tools/plotting.py,sha256=L2gwSjlBVK8OneAfSuna3vCJIg2rSEdvd9TfEbM2Als,1183
9
9
  jupyter_analysis_tools/readdata.py,sha256=bt3Y1MUaY-cmCzUC3JPvdxHZQpn9zAHpdAQQkcHlegc,1381
10
10
  jupyter_analysis_tools/utils.py,sha256=KEzQMp4fY8KfL1Cc03Kj85lftoBWYuzEu7HmwNW761M,4402
11
11
  jupyter_analysis_tools/widgets.py,sha256=a49Dw2YB4gzsfEy7QVkgkt7bmkpuHheBwkyWaoGzHJw,2991
12
- jupyter_analysis_tools-0.1.7.dist-info/AUTHORS.rst,sha256=SUxxgElDBm6WdCbBBFfcr0ZE3SolWL0T0aS5Fym1198,100
13
- jupyter_analysis_tools-0.1.7.dist-info/LICENSE,sha256=SrbIwXA1ZLTO6uwZneJMpvdgiC-3fhNl0vwb3ALoY4g,1107
14
- jupyter_analysis_tools-0.1.7.dist-info/METADATA,sha256=P0-pQxyneyjANqBTWG_Lh30F7Sf8P0CdEcIh2QoDgy4,33004
15
- jupyter_analysis_tools-0.1.7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
16
- jupyter_analysis_tools-0.1.7.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
17
- jupyter_analysis_tools-0.1.7.dist-info/RECORD,,
12
+ jupyter_analysis_tools-0.1.8.dist-info/AUTHORS.rst,sha256=SUxxgElDBm6WdCbBBFfcr0ZE3SolWL0T0aS5Fym1198,100
13
+ jupyter_analysis_tools-0.1.8.dist-info/LICENSE,sha256=SrbIwXA1ZLTO6uwZneJMpvdgiC-3fhNl0vwb3ALoY4g,1107
14
+ jupyter_analysis_tools-0.1.8.dist-info/METADATA,sha256=mQlpWDeq6Lr1gfPFZpOQzPL-9uX3SFy7-x68TvmTMI0,33821
15
+ jupyter_analysis_tools-0.1.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
16
+ jupyter_analysis_tools-0.1.8.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
17
+ jupyter_analysis_tools-0.1.8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5