Skip to content

Commit 5723522

Browse files
authored
Merge pull request #228 from nipy/dependabot/github_actions/actions-7921bc0373
Build(deps): Bump the actions group with 2 updates
2 parents acafa03 + 2713e78 commit 5723522

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Codespell
2222
uses: codespell-project/actions-codespell@v2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
- name: Set up Python ${{ matrix.python-version }}
3636
uses: actions/setup-python@v5
3737
with:

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
commit_message: ${{ steps.get_commit_message.outputs.commit_message }}
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 2
2727
- name: Print head git commit message
@@ -39,7 +39,7 @@ jobs:
3939
name: Build sdist
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545
- name: Build sdist
@@ -75,7 +75,7 @@ jobs:
7575
- { buildplat: ["macos-14", "macosx_arm64"], python: "*" }
7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979
with:
8080
fetch-depth: 0
8181

@@ -106,7 +106,7 @@ jobs:
106106
needs: [build-sdist]
107107
runs-on: ubuntu-latest
108108
steps:
109-
- uses: actions/download-artifact@v4
109+
- uses: actions/download-artifact@v5
110110
with:
111111
name: source-dist
112112
path: ./dist
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
needs: [test-sdist, build-wheel]
129129
steps:
130-
- uses: actions/download-artifact@v4
130+
- uses: actions/download-artifact@v5
131131
with:
132132
path: dist/
133133
pattern: '*-dist'
@@ -141,7 +141,7 @@ jobs:
141141
needs: [pre-publish]
142142
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
143143
steps:
144-
- uses: actions/download-artifact@v4
144+
- uses: actions/download-artifact@v5
145145
with:
146146
path: dist/
147147
pattern: '*-dist'

nitime/timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@ def __init__(self, time, labels=None, indices=None,
15171517
if not np.iterable(time):
15181518
time = [time]
15191519

1520-
# First initilaize the TimeArray from the time-stamps
1520+
# First initialize the TimeArray from the time-stamps
15211521
self.time = TimeArray(time, time_unit=time_unit)
15221522
self.time_unit = self.time.time_unit
15231523

0 commit comments

Comments
 (0)