Skip to content

Commit 19e367c

Browse files
committed
Merge remote-tracking branch 'upstream/maint/1.6.x' into maint/1.7.x
2 parents 8fabbb5 + 0a3329e commit 19e367c

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

.circleci/config.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- build-v1-{{ .Branch }}-{{ .Revision }}
1919
- build-v1--{{ .Revision }}
2020
- build-v1-{{ .Branch }}-
21+
- build-v1-maint/1.7.x-
2122
- build-v1-master-
2223
- build-v1-
2324
paths:
@@ -98,6 +99,7 @@ jobs:
9899
- restore_cache:
99100
keys:
100101
- env-v2-{{ .Branch }}-
102+
- env-v2-maint/1.7.x-
101103
- env-v2-master-
102104
- env-v2-
103105
- run:
@@ -117,6 +119,7 @@ jobs:
117119
keys:
118120
- data-v3-{{ .Branch }}-{{ epoch }}
119121
- data-v3-{{ .Branch }}-
122+
- data-v3-maint/1.7.x-
120123
- data-v3-master-
121124
- data-v3-
122125
- run:
@@ -183,10 +186,6 @@ jobs:
183186
- restore_cache:
184187
keys:
185188
- build-v1-{{ .Branch }}-{{ .Revision }}
186-
- build-v1--{{ .Revision }}
187-
- build-v1-{{ .Branch }}-
188-
- build-v1-master-
189-
- build-v1-
190189
- run:
191190
name: Docker authentication
192191
command: |
@@ -214,9 +213,6 @@ jobs:
214213
- restore_cache:
215214
keys:
216215
- data-v3-{{ .Branch }}-{{ epoch }}
217-
- data-v3-{{ .Branch }}-
218-
- data-v3-master-
219-
- data-v3-
220216

221217
- run:
222218
name: Run unit tests
@@ -335,10 +331,6 @@ jobs:
335331
- restore_cache:
336332
keys:
337333
- build-v1-{{ .Branch }}-{{ .Revision }}
338-
- build-v1--{{ .Revision }}
339-
- build-v1-{{ .Branch }}-
340-
- build-v1-master-
341-
- build-v1-
342334
paths:
343335
- /tmp/docker
344336
- /tmp/images

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Python package
55

66
on:
77
push:
8-
branches: [ '*' ]
8+
branches: [ '**' ]
99
tags: [ '*' ]
1010
pull_request:
1111
branches: [ master, 'maint/*' ]

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,16 @@ A list of prominent changes can be found below. (With thanks to Lea Waller for t
322322
* ``NormalizeMotionParams`` now under ``confounds``.
323323
* ``FMRISummary``, ``CompCorVariancePlot``, ``ConfoundsCorrelationPlot`` from ``plotting``
324324

325+
1.3.9 (December 21, 2022)
326+
=========================
327+
Bug-fix release in the 1.3.x series.
328+
329+
Minor maintenance.
330+
331+
* FIX: Remove deprecated uses of ``np.bool`` for numpy 1.24 compatibility (#764)
332+
* CI: Update GitHub actions from master (#766)
333+
* CI: Update CircleCI from master (#765)
334+
325335
1.3.8 (September 14, 2022)
326336
==========================
327337
Bug-fix release in the 1.3.x series

niworkflows/viz/plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ def confounds_correlation_plot(
927927
ax0 = plt.subplot(gs[0, :10])
928928
ax1 = plt.subplot(gs[0, 11:])
929929

930-
mask = np.zeros_like(corr, dtype=np.bool_)
930+
mask = np.zeros_like(corr, dtype=bool)
931931
mask[np.triu_indices_from(mask)] = True
932932
sns.heatmap(corr, linewidths=0.5, cmap="coolwarm", center=0, square=True, ax=ax0)
933933
ax0.tick_params(axis="both", which="both", width=0)

0 commit comments

Comments
 (0)