jupyter-analysis-tools 0.1.7__py3-none-any.whl → 1.0.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,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # __init__.py
3
3
 
4
- __version__ = "0.1.7"
4
+ __version__ = "1.0.0"
5
5
 
6
6
  from .binning import reBin
7
7
  from .git import checkRepo, isNBstripoutActivated, isNBstripoutInstalled, isRepo
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
+ # binning.py
3
4
 
4
5
  """
5
6
  Overview
@@ -440,5 +441,3 @@ if __name__ == "__main__":
440
441
  adict = vars(adict)
441
442
  # run the reBin program
442
443
  reBin(**adict)
443
-
444
- # vim: set ts=4 sts=4 sw=4 tw=0:
@@ -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,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
- # read1d.py
2
+ # readdata.py
3
3
 
4
4
  import os
5
5
 
@@ -45,6 +45,3 @@ def readdata(fn, q_range=None, read_csv_args=None, print_filename=True):
45
45
 
46
46
  file_name = os.path.basename(fn).split("[")[0]
47
47
  return df_data, file_name
48
-
49
-
50
- # vim: set ts=4 sts=4 sw=4 tw=0:
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
- # ui.py
2
+ # widgets.py
3
3
 
4
4
  import os
5
5
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: jupyter-analysis-tools
3
- Version: 0.1.7
3
+ Version: 1.0.0
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
@@ -30,6 +30,9 @@ Classifier: Intended Audience :: Science/Research
30
30
  Description-Content-Type: text/x-rst
31
31
  License-File: LICENSE
32
32
  License-File: AUTHORS.rst
33
+ Requires-Dist: notebook
34
+ Requires-Dist: ipywidgets
35
+ Dynamic: license-file
33
36
 
34
37
  ========
35
38
  Overview
@@ -47,8 +50,8 @@ Yet another Python library with helpers and utilities for data analysis and proc
47
50
  :target: https://pypi.org/project/jupyter-analysis-tools
48
51
  :alt: PyPI Package latest release
49
52
 
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
53
+ .. |commits-since| image:: https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v1.0.0.svg
54
+ :target: https://github.com/BAMresearch/jupyter-analysis-tools/compare/v1.0.0...main
52
55
  :alt: Commits since latest release
53
56
 
54
57
  .. |license| image:: https://img.shields.io/pypi/l/jupyter-analysis-tools.svg
@@ -121,200 +124,174 @@ Note, to combine the coverage data from all the tox environments run:
121
124
 
122
125
  # CHANGELOG
123
126
 
127
+ ## v1.0.0 (2025-07-09)
124
128
 
125
- ## Unreleased
129
+ ### Bug fixes
126
130
 
127
- ### Documentation
128
-
129
- * docs(Changelog): exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
131
+ * packaging: add required dependency packages to project config ([`43076e2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/43076e2fd27e511545d8f1ec12752435cf5153c6))
130
132
 
133
+ ## v0.1.8 (2025-01-30)
131
134
 
135
+ ### Bug fixes
132
136
 
133
- ## v0.1.7 (2024-03-26)
137
+ * distrib: scipy.integrate.simps does not exist in recent scipy versions ([`b59edc1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b59edc18a6df3bbee23a3ba6e8b8412c294c20d1))
134
138
 
135
- ### Fix
139
+ ### Continuous integration
136
140
 
137
- * fix(distrib): Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
141
+ * changelog: format commit by using their scope only, not repeating the tag ([`6b72fe7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6b72fe766d121d7ea38c452d093368f84760155e))
138
142
 
139
- ### Refactor
143
+ * semver: allow message tag *enh* for enhancements ([`0810b4f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0810b4fd58e1b2383313496b657a800078260c83))
140
144
 
141
- * refactor(notebook_utils): whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
145
+ ### Documentation
142
146
 
147
+ * Changelog: use semantic-release detected scope if available, unchange summary otherwise ([`ca803e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ca803e71d1a5915fc72a4a2feea55616533ff54e))
143
148
 
144
- ## v0.1.6 (2024-03-25)
149
+ * Changelog: omit *empty* versions without relevant changes ([`87b7f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/87b7f2360c5224a6570f8687e8008e2293b81ddb))
145
150
 
146
- ### Fix
151
+ * index: show link to github project on left sidebar ([`3fad5a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3fad5a870801904a636a114d70ff418886c3f2a6))
147
152
 
148
- * fix(notebook_utils): notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
153
+ * Changelog: don't show *chore* changes on automated build config (CI) ([`10c7ee3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10c7ee3190969322b3e19b5ff0ce5e1e911bff59))
149
154
 
155
+ * Changelog: exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
150
156
 
151
- ## v0.1.6-dev.5 (2023-04-20)
157
+ ## v0.1.7 (2024-03-26)
152
158
 
159
+ ### Bug fixes
153
160
 
154
- ## v0.1.6-dev.4 (2023-04-20)
161
+ * distrib: Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
155
162
 
163
+ ### Refactoring
156
164
 
157
- ## v0.1.6-dev.3 (2023-03-28)
165
+ * notebook_utils: whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
158
166
 
167
+ ## v0.1.6 (2024-03-25)
159
168
 
160
- ## v0.1.6-dev.2 (2023-03-27)
169
+ ### Bug fixes
161
170
 
171
+ * notebook_utils: notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
162
172
 
163
173
  ## v0.1.6-dev.1 (2023-03-27)
164
174
 
165
175
  ### Documentation
166
176
 
167
- * docs(analysis): minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
168
-
177
+ * analysis: minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
169
178
 
170
179
  ## v0.1.5 (2023-03-27)
171
180
 
172
- ### Documentation
173
-
174
- * docs(cleanup): removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
175
-
176
- * docs(format): fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
181
+ ### Bug fixes
177
182
 
178
- ### Fix
183
+ * reBin: module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
179
184
 
180
- * fix(reBin): module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
185
+ ### Code style
181
186
 
182
- ### Style
187
+ * format: fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
183
188
 
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))
189
+ * binning: fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
187
190
 
191
+ ### Documentation
188
192
 
189
- ## v0.1.5-dev.2 (2023-03-27)
193
+ * cleanup: removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
190
194
 
195
+ * format: fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
191
196
 
192
197
  ## v0.1.5-dev.1 (2023-03-27)
193
198
 
194
- ### Documentation
195
-
196
- * docs(General): config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
199
+ ### Code style
197
200
 
198
- ### Style
201
+ * config: string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
199
202
 
200
- * style(config): string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
203
+ ### Documentation
201
204
 
205
+ * General: config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
202
206
 
203
207
  ## v0.1.4 (2023-03-03)
204
208
 
205
- ### Fix
206
-
207
- * fix(readme): license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
209
+ ### Bug fixes
208
210
 
211
+ * readme: license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
209
212
 
210
213
  ## v0.1.3 (2023-03-03)
211
214
 
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))
217
-
218
- * docs(Package): update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
219
-
220
- * docs(comments): add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
215
+ ### Bug fixes
221
216
 
222
- ### Fix
217
+ * tox: clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
223
218
 
224
- * fix(tox): clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
219
+ * Package: cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
225
220
 
226
- * fix(Package): cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
221
+ * tox: cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
227
222
 
228
- * fix(tox): cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
223
+ * GitHubAction: migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
229
224
 
230
- * fix(GitHubAction): migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
225
+ ### Code style
231
226
 
232
- ### Refactor
227
+ * pyproject.toml: use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
233
228
 
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))
229
+ ### Documentation
245
230
 
231
+ * readme: adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
246
232
 
247
- ## v0.1.3-dev.4 (2023-02-28)
233
+ * readme: using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
248
234
 
235
+ * Package: update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
249
236
 
250
- ## v0.1.3-dev.3 (2023-02-28)
237
+ * comments: add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
251
238
 
239
+ ### Refactoring
252
240
 
253
- ## v0.1.3-dev.2 (2023-02-27)
241
+ * docs: config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
254
242
 
243
+ * metadata: update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
255
244
 
256
- ## v0.1.3-dev.1 (2023-02-27)
245
+ ### Testing
257
246
 
247
+ * tox: find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
258
248
 
259
249
  ## v0.1.2 (2023-02-24)
260
250
 
261
- ### Documentation
262
-
263
- * docs(distrib): generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
251
+ ### Bug fixes
264
252
 
265
- ### Fix
253
+ * Documentation: doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
266
254
 
267
- * fix(Documentation): doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
255
+ ### Documentation
268
256
 
257
+ * distrib: generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
269
258
 
270
259
  ## v0.1.2-dev.1 (2023-02-24)
271
260
 
272
261
  ### Documentation
273
262
 
274
- * docs(utils): generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
263
+ * utils: generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
275
264
 
276
265
  ### Unknown
277
266
 
278
267
  * v0.1.1 ([`738fdd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/738fdd44b27881360f51f540f28cda4aed2e9005))
279
268
 
280
-
281
269
  ## v0.1.1 (2023-02-24)
282
270
 
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)
271
+ ### Bug fixes
289
272
 
273
+ * docs: allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
290
274
 
291
275
  ## v0.1.1-dev.4 (2023-02-23)
292
276
 
293
277
  ### Documentation
294
278
 
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
-
279
+ * readme: updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
300
280
 
301
- ## v0.1.1-dev.2 (2023-02-23)
281
+ ## v0.1.1-dev.1 (2023-02-23)
302
282
 
283
+ ### Bug fixes
303
284
 
304
- ## v0.1.1-dev.1 (2023-02-23)
285
+ * tox: removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
305
286
 
306
287
  ### Documentation
307
288
 
308
- * docs(config): clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
289
+ * config: clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
309
290
 
310
291
  * docs: removed disabled config ([`3059ff9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3059ff9fba6a17b845441cd283c0f498c05beab2))
311
292
 
312
293
  * docs: disabled incompatible sidebar config with furo theme ([`61959be`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61959be18f26e304042c21872f50dda23635caae))
313
294
 
314
- ### Fix
315
-
316
- * fix(tox): removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
317
-
318
295
  ### Unknown
319
296
 
320
297
  * added tox-wheel to ci required packages ([`7eae72c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7eae72c4a2e977c3efc56b5d9c8da76d67d44536))
@@ -333,7 +310,7 @@ Note, to combine the coverage data from all the tox environments run:
333
310
 
334
311
  * docs config: using urls defined in pyproject.toml ([`33d5f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/33d5f2338e3a95212c21396d9007bac1495f30a8))
335
312
 
336
- * 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))
313
+ * 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))
337
314
 
338
315
  * pre-commit uses pycqa repo for isort ([`4b4a31c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4b4a31c15e9a07455fe9796e17ddbce5f23456ed))
339
316
 
@@ -373,7 +350,6 @@ Note, to combine the coverage data from all the tox environments run:
373
350
 
374
351
  * Dependabot config ([`4578709`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4578709355e0d4ad839b61f42ff2af01c85ee7ff))
375
352
 
376
-
377
353
  ## v0.1.0 (2022-11-10)
378
354
 
379
355
  ### Documentation
@@ -424,7 +400,7 @@ Note, to combine the coverage data from all the tox environments run:
424
400
 
425
401
  * readme: updated badges ([`f18418c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f18418cc52850c6622c4cc0ab6ceb01f4e4839eb))
426
402
 
427
- * readme: fixed badges, renamed testing -&gt; tests ([`3efb28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3efb28fdfbef47fd6a776fada5a7f0b8804a4fa7))
403
+ * readme: fixed badges, renamed testing -> tests ([`3efb28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3efb28fdfbef47fd6a776fada5a7f0b8804a4fa7))
428
404
 
429
405
  * removed pypy test environment from github actions ([`17f8515`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/17f8515fda7746b6c43e4e2ff94fedce95e9a2ae))
430
406
 
@@ -436,7 +412,7 @@ Note, to combine the coverage data from all the tox environments run:
436
412
 
437
413
  * generate github testing workflow with tox ([`f04bb7b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f04bb7bae96a417d56d545be61423930a210fa4a))
438
414
 
439
- * tox:bootstrap: don&#39;t fail for macOS .DS_Store files ([`0445011`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0445011ea7721471aa6caee06565062d041a6110))
415
+ * tox:bootstrap: don't fail for macOS .DS_Store files ([`0445011`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0445011ea7721471aa6caee06565062d041a6110))
440
416
 
441
417
  * tox setup added and works partially ([`4956d25`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4956d2573999ed7fd5aeb5dc8f22b99ef5e6c6da))
442
418
 
@@ -508,7 +484,7 @@ Note, to combine the coverage data from all the tox environments run:
508
484
 
509
485
  * distrib.findLocalMinima() added ([`0ac94c7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0ac94c760f93bfa53bc823d1ccec8901eb5af306))
510
486
 
511
- * distrib.findPeakRanges() filters monotonously increasing/decreasing &#39;peaks&#39; (artefacts) ([`7b967c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b967c00772bea6adce2e735d9c4f54bc1e70d18))
487
+ * distrib.findPeakRanges() filters monotonously increasing/decreasing 'peaks' (artefacts) ([`7b967c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b967c00772bea6adce2e735d9c4f54bc1e70d18))
512
488
 
513
489
  * distrib.distrParFromPeakRanges: convert pandas.Series to numpy.ndarray at the beginning ([`bb19270`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bb192703cece3027d5766f66c8c5a9c27f61df32))
514
490
 
@@ -570,7 +546,7 @@ Note, to combine the coverage data from all the tox environments run:
570
546
 
571
547
  * git: partial transparent git status if repo is clean ([`b2fc0e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b2fc0e9e1020c1fcd36cb2a35ab3edd6cc50feb3))
572
548
 
573
- * fixed git module: using subprocess instead of ipython syntax &#39;!&#39; ([`95e7851`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/95e78510aaba7ceeab4515b226f8aad486140424))
549
+ * fixed git module: using subprocess instead of ipython syntax '!' ([`95e7851`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/95e78510aaba7ceeab4515b226f8aad486140424))
574
550
 
575
551
  * functions for git repo status added ([`4c1f620`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4c1f6201707e3bb5591614eae102b8e63abf4972))
576
552
 
@@ -0,0 +1,17 @@
1
+ jupyter_analysis_tools/__init__.py,sha256=56tfdRxdt1BLkFcipMas0-sbeVXpldPVoggIHrkEJMw,419
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/notebook_utils.py,sha256=5MwYjUy4Skn9goFOP_qKFPPBN4VkffBishHVSD_fPFo,1263
8
+ jupyter_analysis_tools/plotting.py,sha256=L2gwSjlBVK8OneAfSuna3vCJIg2rSEdvd9TfEbM2Als,1183
9
+ jupyter_analysis_tools/readdata.py,sha256=Z0LCAYKEauItdDF6H0gJYR74EKgR2-XFHo5gKlTz7cw,1348
10
+ jupyter_analysis_tools/utils.py,sha256=KEzQMp4fY8KfL1Cc03Kj85lftoBWYuzEu7HmwNW761M,4402
11
+ jupyter_analysis_tools/widgets.py,sha256=rA8qPvY9nS1OtykZwXtCTG29K-N_MYFVb5Aj8yK40_s,2996
12
+ jupyter_analysis_tools-1.0.0.dist-info/licenses/AUTHORS.rst,sha256=SUxxgElDBm6WdCbBBFfcr0ZE3SolWL0T0aS5Fym1198,100
13
+ jupyter_analysis_tools-1.0.0.dist-info/licenses/LICENSE,sha256=SrbIwXA1ZLTO6uwZneJMpvdgiC-3fhNl0vwb3ALoY4g,1107
14
+ jupyter_analysis_tools-1.0.0.dist-info/METADATA,sha256=RmJTHcgRAtcwIOgDrII1GgRnHg1zanDEpsIIwWoUoHc,34113
15
+ jupyter_analysis_tools-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ jupyter_analysis_tools-1.0.0.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
17
+ jupyter_analysis_tools-1.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,17 +0,0 @@
1
- jupyter_analysis_tools/__init__.py,sha256=szPCI0oqvdZmsDh1iREvUtxQqX7oWAhv1yhRJe90sg0,419
2
- jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
- jupyter_analysis_tools/binning.py,sha256=unsvOGl_jQSPlqZXafSgFeBPZwy0AidVKL_3-XIwPF8,14557
4
- jupyter_analysis_tools/datalocations.py,sha256=BakfiZOMcBwp-_DAn7l57lGWZmZGNnk0j73V75nLBUA,4322
5
- jupyter_analysis_tools/distrib.py,sha256=oPR8dIZIphqPJ8wuBZTLAdmFHqkjGg6XZdx3N7IMo3Y,16417
6
- jupyter_analysis_tools/git.py,sha256=mqSk5nnAFrmk1_2KFuKVrDWOkRbGbAQOq2N1DfxhNpg,2216
7
- jupyter_analysis_tools/notebook_utils.py,sha256=5MwYjUy4Skn9goFOP_qKFPPBN4VkffBishHVSD_fPFo,1263
8
- jupyter_analysis_tools/plotting.py,sha256=L2gwSjlBVK8OneAfSuna3vCJIg2rSEdvd9TfEbM2Als,1183
9
- jupyter_analysis_tools/readdata.py,sha256=bt3Y1MUaY-cmCzUC3JPvdxHZQpn9zAHpdAQQkcHlegc,1381
10
- jupyter_analysis_tools/utils.py,sha256=KEzQMp4fY8KfL1Cc03Kj85lftoBWYuzEu7HmwNW761M,4402
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,,