Skip to content

Commit dc28b70

Browse files
CI(dependabot): Bump actions/checkout from 4 to 5 (#9)
* CI(dependabot): Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Style: Fix pylint error --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adrien Berchet <adrien.berchet@epfl.ch>
1 parent 8baafed commit dc28b70

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
env:
1212
PR_TITLE: ${{ github.event.pull_request.title }}
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/setup-node@v4
1616
with:
1717
node-version: '20'

.github/workflows/publish-sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Build and publish on PyPI
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Set up Python 3.10
1515
uses: actions/setup-python@v5
1616
with:

.github/workflows/run-tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
min_versions: "min_versions"
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Set up Python ${{ matrix.python-version }}
2727
uses: actions/setup-python@v5
2828
with:

bluepyparallel/parallel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def __init__(
332332
if self.interactive:
333333
self.nb_processes = len(self.client.scheduler_info()["workers"])
334334
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
336336

337337
comm = MPI.COMM_WORLD # pylint: disable=c-extension-no-member
338338
self.nb_processes = comm.Get_size()

0 commit comments

Comments
 (0)