##// END OF EJS Templates
Add option to `%autoreload` to hide errors when reloading code (#14056)...
Add option to `%autoreload` to hide errors when reloading code (#14056) * We have `%autoreload` enabled by default in Spyder and think it's a bit annoying to show its error messages to users because they make little sense to them. These errors are not uncommon when you are working with some code that is slightly different between two git branches. * However, I didn't change the current behavior (i.e. showing errors) because it's been like that for as long as I can remember. We'd simply use the new `--hide-errors` option in our kernel.

File last commit:

r28271:63e6674c
r28310:b518e6a5 merge
Show More
setup.cfg
116 lines | 2.3 KiB | text/x-ini | IniLexer
Todd
Include LICENSE file in wheels ...
r24381 [metadata]
James Morris
Move more metadata from IPython.core.release.py to setup.cfg
r27261 name = ipython
James Morris
Set version in setup.cfg
r27253 version = attr: IPython.core.release.__version__
James Morris
Move more metadata from IPython.core.release.py to setup.cfg
r27261 url = https://ipython.org
description = IPython: Productive Interactive Computing
long_description_content_type = text/x-rst
Matthias Bussonnier
fix long description
r27317 long_description = file: long_description.rst
Todd
Include LICENSE file in wheels ...
r24381 license_file = LICENSE
James Morris
Move project_urls to setup.cfg
r27252 project_urls =
Documentation = https://ipython.readthedocs.io/
Funding = https://numfocus.org/
Source = https://github.com/ipython/ipython
Tracker = https://github.com/ipython/ipython/issues
James Morris
Move more metadata from IPython.core.release.py to setup.cfg
r27261 keywords = Interactive, Interpreter, Shell, Embedding
platforms = Linux, Mac OSX, Windows
classifiers =
Framework :: IPython
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 Framework :: Jupyter
James Morris
Move more metadata from IPython.core.release.py to setup.cfg
r27261 Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Matthias Bussonnier
retar correctly xz
r27316 Topic :: System :: Shells
James Morris
Move more metadata from IPython.core.release.py to setup.cfg
r27261
James Morris
Specify install_requires in setup.cfg
r27254 [options]
James Morris
Use setuptools' find_packages()
r27258 packages = find:
Gabriel
Python Requires >=3.9
r28271 python_requires = >=3.9
James Morris
Put zip_safe and python_requires in setup.cfg
r27256 zip_safe = False
James Morris
Specify install_requires in setup.cfg
r27254 install_requires =
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 appnope; sys_platform == "darwin"
backcall
colorama; sys_platform == "win32"
James Morris
Specify install_requires in setup.cfg
r27254 decorator
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 jedi>=0.16
matplotlib-inline
pexpect>4.3; sys_platform != "win32"
James Morris
Specify install_requires in setup.cfg
r27254 pickleshare
Matthias Bussonnier
Pin to not ptk 3.0.37,...
r28131 prompt_toolkit>=3.0.30,<3.1.0,!=3.0.37
Nicholas Bollweg
fix pygments name
r27439 pygments>=2.4.0
James Morris
Specify install_requires in setup.cfg
r27254 stack_data
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 traitlets>=5
Matthias Bussonnier
Allow to dispatch getting documentation on objects...
r28195 typing_extensions ; python_version<'3.10'
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437
[options.extras_require]
black =
black
doc =
krassowski
Move documentation requirements to setup.cfg
r27773 ipykernel
setuptools>=18.5
sphinx>=1.3
sphinx-rtd-theme
docrepr
matplotlib
stack_data
pytest<7
krassowski
Merge branch 'main' into completion-matcher
r27787 typing_extensions
krassowski
Move documentation requirements to setup.cfg
r27773 %(test)s
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 kernel =
ipykernel
nbconvert =
nbconvert
nbformat =
nbformat
notebook =
ipywidgets
notebook
parallel =
ipyparallel
qtconsole =
qtconsole
terminal =
test =
Matthias Bussonnier
pin pytest
r27596 pytest<7.1
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 pytest-asyncio
testpath
test_extra =
Matthias Bussonnier
fix setup.cfg
r27597 %(test)s
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 curio
matplotlib!=3.2.0
nbformat
Matthias Bussonnier
NEP 29, bump min numpy version
r28084 numpy>=1.21
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 pandas
trio
Nicholas Bollweg
move all lower
r27438 all =
%(black)s
%(doc)s
%(kernel)s
%(nbconvert)s
%(nbformat)s
%(notebook)s
%(parallel)s
%(qtconsole)s
%(terminal)s
%(test_extra)s
%(test)s
James Morris
Specify install_requires in setup.cfg
r27254
James Morris
Use setuptools' find_packages()
r27258 [options.packages.find]
exclude =
setupext
James Morris
Specify package data in setup.cfg
r27259 [options.package_data]
Audrey Dutcher
Add py.typed to setup.cfg
r27935 IPython = py.typed
James Morris
Specify package data in setup.cfg
r27259 IPython.core = profile/README*
IPython.core.tests = *.png, *.jpg, daft_extension/*.py
IPython.lib.tests = *.wav
IPython.testing.plugin = *.txt
Matthias Bussonnier
DOC: More autoreformatting of docstrings....
r26498 [velin]
Nicholas Bollweg
move, sort (black) extras to setup.cfg, pygments pin
r27437 ignore_patterns =
Matthias Bussonnier
reformat all of IPython.core
r27294 IPython/core/tests
Matthias Bussonnier
DOC: More autoreformatting of docstrings....
r26498 IPython/testing
Matthias Bussonnier
setup pip cache
r27270
[tool.black]
exclude = 'timing\.py'