File tree Expand file tree Collapse file tree 3 files changed +27
-14
lines changed Expand file tree Collapse file tree 3 files changed +27
-14
lines changed Original file line number Diff line number Diff line change 1
- # # v1.0.3 (released 2022/12/08)
1
+ # # v1.0.3 (released 2022/12/18)
2
+
3
+ # ## :warning: Behavior changes
4
+
5
+ This backward-incompatible change was made before officially announcing
6
+ the release, so we are bumping the patch version number rather than the major
7
+ version number.
8
+
9
+ - The `N_JOBS` parameter has been renamed to
10
+ [`n_jobs`](mne_bids_pipeline._config.n_jobs) for consistency
11
+ (# 694 by @larsoner)
2
12
3
13
# ## :bug: Bug fixes
4
14
5
15
- The `stable` documentation deployment was fixed
6
16
(# 682 by @larsoner )
7
17
18
+ # ## :medical_symbol: Code health
19
+
20
+ - Code quality now checked by [ruff](https:// github.com/charliermarsh/ruff)
21
+ and [black](https:// black.readthedocs.io/en/stable/)
22
+ (# 689, #690, and #691 by @larsoner)
23
+ - Documentation building infrastructure improved by using newer mkdocs
24
+ extensions
25
+ (# 693 by @hoechenberger)
26
+
8
27
9
28
# # v1.0.2 (released 2022/12/07)
10
29
Original file line number Diff line number Diff line change 2
2
3
3
[// ]: # (### :new: New features & enhancements)
4
4
5
- [// ]: # (- Whatever (#000 by @whoever )
5
+ [// ]: # (- Whatever (#000 by @whoever) )
6
6
7
- # ## :warning: Behavior changes
7
+ [ // ]: # (### :warning: Behavior changes)
8
8
9
- - The `N_JOBS` parameter has been renamed to
10
- [`n_jobs`](mne_bids_pipeline._config.n_jobs) for consistency
11
- (#694 by @larsoner)
9
+ [// ]: # (- Whatever (#000 by @whoever) )
12
10
13
- # ## :medical_symbol: Code health
14
-
15
- - Code quality now checked by [ruff](https: // github.com/charliermarsh/ruff)
16
- and [black](https: // black.readthedocs.io/en/stable/)
17
- (#689 , #690 , and #691 by @larsoner)
18
- - Documentation building infrastructure improved by using newer mkdocs
19
- extensions
20
- (#693 by @hoechenberger)
11
+ [// ]: # (### :medical_symbol: Code health)
21
12
22
13
[// ]: # (### :bug: Bug fixes)
14
+
15
+ - Nothing yet
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ def pytest_configure(config):
24
24
ignore:`np.MachAr` is deprecated.*:DeprecationWarning
25
25
ignore:The get_cmap function will be deprecated.*:
26
26
ignore:make_current is deprecated.*:DeprecationWarning
27
+ ignore:`np.*` is a deprecated alias for .*:DeprecationWarning
27
28
"""
28
29
for warning_line in warning_lines .split ("\n " ):
29
30
warning_line = warning_line .strip ()
You can’t perform that action at this time.
0 commit comments