File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,17 @@ jobs:
37
37
- name : Test with pytest
38
38
run : |
39
39
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
45
51
46
52
check_release :
47
53
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 50
50
],
51
51
install_requires = [
52
52
'jupyter_client>=7.0.0' ,
53
+ 'jupyter_core>=4.12,!=5.0.*' ,
53
54
'ipython' ,
54
55
'ipykernel>=6.14' , # bless IPython kernel for now
55
56
'prompt_toolkit>=3.0.30' ,
You can’t perform that action at this time.
0 commit comments