Skip to content

Commit bdc38c4

Browse files
committed
Fix mypy error with IPython stuff
1 parent 06520ea commit bdc38c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
mypy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4 # https://github.com/actions/checkout
15-
- uses: actions/setup-python@v5 # https://github.com/actions/setup-python
14+
- uses: actions/checkout@v4 # https://github.com/actions/checkout
15+
- uses: actions/setup-python@v5 # https://github.com/actions/setup-python
1616
with:
1717
python-version: 3.13
1818
allow-prereleases: true
1919
# Only a single commit is fetched by default, for the ref/SHA that triggered the workflow.
2020
# Set fetch-depth: 0 to fetch all history for all branches and tags.
2121
fetch-depth: 0 # Needed for setuptools_scm to work correctly
22-
- run: pip install -U --user pip mypy
22+
- run: pip install -U --user pip mypy ipython-stubs
2323
- run: mypy .

0 commit comments

Comments
 (0)