edf2csv 0.6.60 → 0.6.61
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.
- package/docs/CHANGELOG.md +18 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.6.61
|
|
7
|
+
|
|
8
|
+
### Added: the pyEDFlib cross-check runs weekly instead of never
|
|
9
|
+
|
|
10
|
+
0.6.58 put six of the seven sweeps into CI and left this one out on purpose: it needs pyEDFlib
|
|
11
|
+
installed, and a check whose whole value is comparing against an independent implementation must
|
|
12
|
+
not quietly pass when that implementation fails to install. A green tick meaning "pip was
|
|
13
|
+
unhappy" is worse than no tick.
|
|
14
|
+
|
|
15
|
+
Its own scheduled workflow answers that. On a schedule a failed install is a failed run — there
|
|
16
|
+
is no pull request it would be blocking and no temptation to make it skippable — and weekly is
|
|
17
|
+
the right cadence for what it actually guards: drift in the arithmetic, or in pyEDFlib. Neither
|
|
18
|
+
moves at the speed of a commit. `workflow_dispatch` is there for running it against a change
|
|
19
|
+
that touches the scaler.
|
|
20
|
+
|
|
21
|
+
That is claim 1 on the correctness page — the one this project leads with — and it was the last
|
|
22
|
+
one whose evidence had to be produced by hand.
|
|
23
|
+
|
|
6
24
|
## 0.6.60
|
|
7
25
|
|
|
8
26
|
### Changed: the publish step retries the two failures that are not the code's
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.61",
|
|
4
4
|
"description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"edf",
|