From 4fc39967228b9cc4b794fb8b1438cd98f9ae2d3eabc1e76a876b622b856adffd Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Sun, 11 Jun 2023 14:34:52 +0000 Subject: [PATCH 1/2] Accepting request 1092101 from home:ecsos:python - Add %{?sle15_python_module_pythons} OBS-URL: https://build.opensuse.org/request/show/1092101 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-ipython?expand=0&rev=113 --- python-ipython.changes | 5 +++++ python-ipython.spec | 1 + 2 files changed, 6 insertions(+) diff --git a/python-ipython.changes b/python-ipython.changes index 16f245c..e01e721 100644 --- a/python-ipython.changes +++ b/python-ipython.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sat Jun 10 12:18:34 UTC 2023 - ecsos + +- Add %{?sle15_python_module_pythons} + ------------------------------------------------------------------- Fri Jun 2 12:11:04 UTC 2023 - Ben Greiner diff --git a/python-ipython.spec b/python-ipython.spec index 6bbeec3..d869290 100644 --- a/python-ipython.spec +++ b/python-ipython.spec @@ -31,6 +31,7 @@ %endif # extra tests are skipped automatically, don't require these packages for Ring1 %bcond_with localtest +%{?sle15_python_module_pythons} Name: python-ipython%{psuffix} Version: 8.13.2 Release: 0 From 8c9f680334b8b66194457aa2df62f4289ba3e597168f20c5842526997d83b5d7 Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Sun, 11 Jun 2023 22:00:03 +0000 Subject: [PATCH 2/2] Accepting request 1092419 from home:bnavigator:branches:devel:languages:python:jupyter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update to 8.14.0 * PR #14080 fixes some shortcuts issues. * PR #14056 Add option to %autoreload to hide errors when reloading code. * PR #14039 (and PR #14040) to show exception notes in tracebacks. * PR #14076 Add option to EventManager to prevent printing ## SPEC 0 and SPEC 4 * You’ve heard about the NEPs, (NumPy enhancement Proposal), having a NEP for something non-numpy specific was sometime confusing. Long live the SPECs. * We are now trying to follow SPEC 0 (aka old NEP 29) for of support of upstream libraries. * We also now try to follow SPEC 4 (test and publish nightly on a centralized nightly repository). We encourage you to do so as well in order to report breakage, and contribute to the SPEC process ! ## Python 3.12 compatibility ? * Python 3.12 changed its tokenizer to have better support for f-strings and allow arbitrary expression. This is a great new feature and performance improvement in python 3.12. * Unfortunately this means the new tokenizer does not support incomplete or invalid Python which will break many features of IPython. Thus compatibility of IPython with Python 3.12 is not guarantied. It is unclear to which extent IPython is affected, and whether we can/should try to still support magics, shell escape (! ....), …, as well as how to do it if we can. * In addition even if we there is technical feasibility to do so, it is no clear we have the resources to do it. We are thus looking for your help if you can _test_ on Python 3.12 to see to which extent this affects users and which features are critical. * We are not going to pin IPython to Python <3.12 as otherwise on install pip would downgrade/resolve to IPython 8.13, so if you plan to update to Python 3.12 after its release, we encourage for extra care. - Skip potential future python312 because of the above OBS-URL: https://build.opensuse.org/request/show/1092419 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-ipython?expand=0&rev=114 --- ipython-8.13.2.tar.gz | 3 --- ipython-8.14.0.tar.gz | 3 +++ python-ipython.changes | 41 +++++++++++++++++++++++++++++++++++++++++ python-ipython.spec | 4 +++- 4 files changed, 47 insertions(+), 4 deletions(-) delete mode 100644 ipython-8.13.2.tar.gz create mode 100644 ipython-8.14.0.tar.gz diff --git a/ipython-8.13.2.tar.gz b/ipython-8.13.2.tar.gz deleted file mode 100644 index 057e98d..0000000 --- a/ipython-8.13.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7dff3fad32b97f6488e02f87b970f309d082f758d7b7fc252e3b19ee0e432dbb -size 5467542 diff --git a/ipython-8.14.0.tar.gz b/ipython-8.14.0.tar.gz new file mode 100644 index 0000000..b97ec6b --- /dev/null +++ b/ipython-8.14.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d197b907b6ba441b692c48cf2a3a2de280dc0ac91a3405b39349a50272ca0a1 +size 5470735 diff --git a/python-ipython.changes b/python-ipython.changes index e01e721..9d44942 100644 --- a/python-ipython.changes +++ b/python-ipython.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Sun Jun 11 19:44:22 UTC 2023 - Ben Greiner + +- Update to 8.14.0 + * PR #14080 fixes some shortcuts issues. + * PR #14056 Add option to %autoreload to hide errors when + reloading code. + * PR #14039 (and PR #14040) to show exception notes in + tracebacks. + * PR #14076 Add option to EventManager to prevent printing + ## SPEC 0 and SPEC 4 + * You’ve heard about the NEPs, (NumPy enhancement Proposal), + having a NEP for something non-numpy specific was sometime + confusing. Long live the SPECs. + * We are now trying to follow SPEC 0 (aka old NEP 29) for of + support of upstream libraries. + * We also now try to follow SPEC 4 (test and publish nightly on a + centralized nightly repository). We encourage you to do so as + well in order to report breakage, and contribute to the SPEC + process ! + ## Python 3.12 compatibility ? + * Python 3.12 changed its tokenizer to have better support for + f-strings and allow arbitrary expression. This is a great new + feature and performance improvement in python 3.12. + * Unfortunately this means the new tokenizer does not support + incomplete or invalid Python which will break many features of + IPython. Thus compatibility of IPython with Python 3.12 is not + guarantied. It is unclear to which extent IPython is affected, + and whether we can/should try to still support magics, shell + escape (! ....), …, as well as how to do it if we can. + * In addition even if we there is technical feasibility to do so, + it is no clear we have the resources to do it. We are thus + looking for your help if you can _test_ on Python 3.12 to see + to which extent this affects users and which features are + critical. + * We are not going to pin IPython to Python <3.12 as otherwise on + install pip would downgrade/resolve to IPython 8.13, so if you + plan to update to Python 3.12 after its release, we encourage + for extra care. +- Skip potential future python312 because of the above + ------------------------------------------------------------------- Sat Jun 10 12:18:34 UTC 2023 - ecsos diff --git a/python-ipython.spec b/python-ipython.spec index d869290..cc523c8 100644 --- a/python-ipython.spec +++ b/python-ipython.spec @@ -32,8 +32,10 @@ # extra tests are skipped automatically, don't require these packages for Ring1 %bcond_with localtest %{?sle15_python_module_pythons} +# See whatsnew of 8.14 +%define skip_python312 1 Name: python-ipython%{psuffix} -Version: 8.13.2 +Version: 8.14.0 Release: 0 Summary: Rich architecture for interactive computing with Python License: BSD-3-Clause