We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 145d70f commit 19b3671Copy full SHA for 19b3671
.github/workflows/python-package.yml
@@ -37,11 +37,17 @@ jobs:
37
- name: Test with pytest
38
run: |
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
+
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - 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
51
52
check_release:
53
runs-on: ubuntu-latest
setup.py
@@ -50,6 +50,7 @@
],
install_requires=[
'jupyter_client>=7.0.0',
+ 'jupyter_core>=4.12,!=5.0.*',
54
'ipython',
55
'ipykernel>=6.14', # bless IPython kernel for now
56
'prompt_toolkit>=3.0.30',
0 commit comments