Skip to content

Commit 19b3671

Browse files
committed
cleanup
1 parent 145d70f commit 19b3671

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

Diff for: .github/workflows/python-package.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,17 @@ jobs:
3737
- name: Test with pytest
3838
run: |
3939
pytest --cov jupyter_console || pytest jupyter_console --lf
40-
- name: Linting
41-
run: |
42-
check-manifest
43-
pip install mypy
44-
mypy jupyter_console
40+
41+
lint:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v2
45+
- uses: actions/setup-python@v2
46+
- name: Linting
47+
run: |
48+
pip install check-manifest mypy
49+
check-manifest
50+
mypy jupyter_console
4551
4652
check_release:
4753
runs-on: ubuntu-latest

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
],
5151
install_requires=[
5252
'jupyter_client>=7.0.0',
53+
'jupyter_core>=4.12,!=5.0.*',
5354
'ipython',
5455
'ipykernel>=6.14', # bless IPython kernel for now
5556
'prompt_toolkit>=3.0.30',

0 commit comments

Comments
 (0)