File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
env :
12
12
PR_TITLE : ${{ github.event.pull_request.title }}
13
13
steps :
14
- - uses : actions/checkout@v4
14
+ - uses : actions/checkout@v5
15
15
- uses : actions/setup-node@v4
16
16
with :
17
17
node-version : ' 20'
Original file line number Diff line number Diff line change 10
10
name : Build and publish on PyPI
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v4
13
+ - uses : actions/checkout@v5
14
14
- name : Set up Python 3.10
15
15
uses : actions/setup-python@v5
16
16
with :
Original file line number Diff line number Diff line change 22
22
min_versions : " min_versions"
23
23
24
24
steps :
25
- - uses : actions/checkout@v4
25
+ - uses : actions/checkout@v5
26
26
- name : Set up Python ${{ matrix.python-version }}
27
27
uses : actions/setup-python@v5
28
28
with :
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ def __init__(
332
332
if self .interactive :
333
333
self .nb_processes = len (self .client .scheduler_info ()["workers" ])
334
334
else : # pragma: no cover
335
- from mpi4py import MPI # pylint: disable=import-outside-toplevel
335
+ from mpi4py import MPI # pylint: disable=import-outside-toplevel,no-name-in-module
336
336
337
337
comm = MPI .COMM_WORLD # pylint: disable=c-extension-no-member
338
338
self .nb_processes = comm .Get_size ()
You can’t perform that action at this time.
0 commit comments