##// END OF EJS Templates
Fix %page not working: OInfo not subscriptable error. (#14014)...
Fix %page not working: OInfo not subscriptable error. (#14014) %page not working any more due to OInfo not subscriptable error. Fixes #14013

File last commit:

r28208:793dc064
r28214:9c07131a merge
Show More
pyproject.toml
32 lines | 866 B | text/plain | TOMLLexer
James Morris
PEP 517 support
r27264 [build-system]
Michał Górny
Modernize setuptools usage in pyproject.toml...
r27682 requires = ["setuptools >= 51.0.0"]
build-backend = "setuptools.build_meta"
Matthias Bussonnier
MAINT: refactor/please mypy....
r28167 [tool.mypy]
python_version = 3.8
ignore_missing_imports = true
follow_imports = 'silent'
exclude = [
'test_\.+\.py',
'IPython.utils.tests.test_wildcard',
'testing',
'tests',
'PyColorize.py',
'_process_win32_controller.py',
'IPython/core/application.py',
'IPython/core/completerlib.py',
'IPython/core/displaypub.py',
'IPython/core/historyapp.py',
#'IPython/core/interactiveshell.py',
'IPython/core/magic.py',
'IPython/core/profileapp.py',
Matthias Bussonnier
try to fix tbcode
r28208 # 'IPython/core/ultratb.py',
Matthias Bussonnier
MAINT: refactor/please mypy....
r28167 'IPython/lib/deepreload.py',
'IPython/lib/pretty.py',
'IPython/sphinxext/ipython_directive.py',
'IPython/terminal/ipapp.py',
'IPython/utils/_process_win32.py',
'IPython/utils/path.py',
'IPython/utils/timing.py',
'IPython/utils/text.py'
]