diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-11-15 09:28:54 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-11-15 10:14:41 +0300 |
commit | 351c5f640a103d19f8f45c3f2087c4d7a4858299 (patch) | |
tree | 1b5f3f01458a148537e209a8496ccf0ec01fb825 /contrib/python/ipython | |
parent | 6918eac78225162084b3dc2af468f5614975cc29 (diff) | |
download | ydb-351c5f640a103d19f8f45c3f2087c4d7a4858299.tar.gz |
Update contrib/python/ipython/py3 to 8.17.2
Diffstat (limited to 'contrib/python/ipython')
6 files changed, 14 insertions, 10 deletions
diff --git a/contrib/python/ipython/py3/.dist-info/METADATA b/contrib/python/ipython/py3/.dist-info/METADATA index 829b1c4f27..7c42295cf6 100644 --- a/contrib/python/ipython/py3/.dist-info/METADATA +++ b/contrib/python/ipython/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ipython -Version: 8.17.1 +Version: 8.17.2 Summary: IPython: Productive Interactive Computing Home-page: https://ipython.org Author: The IPython Development Team @@ -51,7 +51,7 @@ Requires-Dist: pytest <7 ; extra == 'all' Requires-Dist: typing-extensions ; extra == 'all' Requires-Dist: exceptiongroup ; extra == 'all' Requires-Dist: pytest <7.1 ; extra == 'all' -Requires-Dist: pytest-asyncio ; extra == 'all' +Requires-Dist: pytest-asyncio <0.22 ; extra == 'all' Requires-Dist: testpath ; extra == 'all' Requires-Dist: pickleshare ; extra == 'all' Requires-Dist: nbconvert ; extra == 'all' @@ -79,7 +79,7 @@ Requires-Dist: pytest <7 ; extra == 'doc' Requires-Dist: typing-extensions ; extra == 'doc' Requires-Dist: exceptiongroup ; extra == 'doc' Requires-Dist: pytest <7.1 ; extra == 'doc' -Requires-Dist: pytest-asyncio ; extra == 'doc' +Requires-Dist: pytest-asyncio <0.22 ; extra == 'doc' Requires-Dist: testpath ; extra == 'doc' Requires-Dist: pickleshare ; extra == 'doc' Provides-Extra: kernel @@ -98,12 +98,12 @@ Requires-Dist: qtconsole ; extra == 'qtconsole' Provides-Extra: terminal Provides-Extra: test Requires-Dist: pytest <7.1 ; extra == 'test' -Requires-Dist: pytest-asyncio ; extra == 'test' +Requires-Dist: pytest-asyncio <0.22 ; extra == 'test' Requires-Dist: testpath ; extra == 'test' Requires-Dist: pickleshare ; extra == 'test' Provides-Extra: test_extra Requires-Dist: pytest <7.1 ; extra == 'test_extra' -Requires-Dist: pytest-asyncio ; extra == 'test_extra' +Requires-Dist: pytest-asyncio <0.22 ; extra == 'test_extra' Requires-Dist: testpath ; extra == 'test_extra' Requires-Dist: pickleshare ; extra == 'test_extra' Requires-Dist: curio ; extra == 'test_extra' diff --git a/contrib/python/ipython/py3/IPython/core/events.py b/contrib/python/ipython/py3/IPython/core/events.py index 90ff8f746d..ef39c4fd0a 100644 --- a/contrib/python/ipython/py3/IPython/core/events.py +++ b/contrib/python/ipython/py3/IPython/core/events.py @@ -82,7 +82,11 @@ class EventManager(object): func(*args, **kwargs) except (Exception, KeyboardInterrupt): if self.print_on_error: - print("Error in callback {} (for {}):".format(func, event)) + print( + "Error in callback {} (for {}), with arguments args {},kwargs {}:".format( + func, event, args, kwargs + ) + ) self.shell.showtraceback() # event_name -> prototype mapping diff --git a/contrib/python/ipython/py3/IPython/core/release.py b/contrib/python/ipython/py3/IPython/core/release.py index ee0042d081..8a349a17c6 100644 --- a/contrib/python/ipython/py3/IPython/core/release.py +++ b/contrib/python/ipython/py3/IPython/core/release.py @@ -17,7 +17,7 @@ # version _version_major = 8 _version_minor = 17 -_version_patch = 1 +_version_patch = 2 _version_extra = ".dev" # _version_extra = "rc1" _version_extra = "" # Uncomment this for full releases diff --git a/contrib/python/ipython/py3/IPython/extensions/autoreload.py b/contrib/python/ipython/py3/IPython/extensions/autoreload.py index 0025ad519f..98c9a0d01a 100644 --- a/contrib/python/ipython/py3/IPython/extensions/autoreload.py +++ b/contrib/python/ipython/py3/IPython/extensions/autoreload.py @@ -701,7 +701,7 @@ class AutoreloadMagics(Magics): # Inject module to user namespace self.shell.push({top_name: top_module}) - def pre_run_cell(self): + def pre_run_cell(self, info): if self._reloader.enabled: try: self._reloader.check() diff --git a/contrib/python/ipython/py3/IPython/utils/_sysinfo.py b/contrib/python/ipython/py3/IPython/utils/_sysinfo.py index 8d771a843f..602452db2d 100644 --- a/contrib/python/ipython/py3/IPython/utils/_sysinfo.py +++ b/contrib/python/ipython/py3/IPython/utils/_sysinfo.py @@ -1,2 +1,2 @@ # GENERATED BY setup.py -commit = "0cfced36e" +commit = "ef3bae307" diff --git a/contrib/python/ipython/py3/ya.make b/contrib/python/ipython/py3/ya.make index 870b9e3579..eefe3a62cc 100644 --- a/contrib/python/ipython/py3/ya.make +++ b/contrib/python/ipython/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(8.17.1) +VERSION(8.17.2) LICENSE(BSD-3-Clause) |