pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-ipython



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jan  3 21:22:01 UTC 2023

Modified Files:
        pkgsrc/devel/py-ipython: Makefile PLIST distinfo

Log Message:
py-ipython: updated to 8.8.0

IPython 8.8.0
-------------

First release of IPython in 2023 as there was no release at the end of
December.

This is an unusually big release (relatively speaking) with more than 15 Pull
Requests merge.

Of particular interest are:

 - :ghpull:`13852` that replace the greedy completer and improve
   completion, in particular for dictionary keys.
 - :ghpull:`13858` that adds ``py.typed`` to ``setup.cfg`` to make sure it is
   bundled in wheels.
 - :ghpull:`13869` that implements tab completions for IPython options in the
   shell when using `argcomplete <https://github.com/kislyuk/argcomplete>`. I
   believe this also needs a recent version of Traitlets.
 - :ghpull:`13865` makes the ``inspector`` class of `InteractiveShell`
   configurable.
 - :ghpull:`13880` that remove minor-version entrypoints as the minor version
   entry points that would be included in the wheel would be the one of the
   Python version that was used to build the ``whl`` file.

In no particular order, the rest of the changes update the test suite to be
compatible with Pygments 2.14, various docfixes, testing on more recent python
versions and various updates.


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 pkgsrc/devel/py-ipython/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-ipython/PLIST
cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/py-ipython/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-ipython/Makefile
diff -u pkgsrc/devel/py-ipython/Makefile:1.82 pkgsrc/devel/py-ipython/Makefile:1.83
--- pkgsrc/devel/py-ipython/Makefile:1.82       Mon Nov 28 17:58:59 2022
+++ pkgsrc/devel/py-ipython/Makefile    Tue Jan  3 21:22:01 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.82 2022/11/28 17:58:59 adam Exp $
+# $NetBSD: Makefile,v 1.83 2023/01/03 21:22:01 adam Exp $
 
-DISTNAME=      ipython-8.7.0
+DISTNAME=      ipython-8.8.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=i/ipython/}

Index: pkgsrc/devel/py-ipython/PLIST
diff -u pkgsrc/devel/py-ipython/PLIST:1.19 pkgsrc/devel/py-ipython/PLIST:1.20
--- pkgsrc/devel/py-ipython/PLIST:1.19  Mon Nov 28 17:58:59 2022
+++ pkgsrc/devel/py-ipython/PLIST       Tue Jan  3 21:22:01 2023
@@ -1,5 +1,4 @@
-@comment $NetBSD: PLIST,v 1.19 2022/11/28 17:58:59 adam Exp $
-bin/ipython${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.20 2023/01/03 21:22:01 adam Exp $
 bin/ipython-${PYVERSSUFFIX}
 bin/ipython3-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -87,6 +86,9 @@ ${PYSITELIB}/IPython/core/formatters.pyo
 ${PYSITELIB}/IPython/core/getipython.py
 ${PYSITELIB}/IPython/core/getipython.pyc
 ${PYSITELIB}/IPython/core/getipython.pyo
+${PYSITELIB}/IPython/core/guarded_eval.py
+${PYSITELIB}/IPython/core/guarded_eval.pyc
+${PYSITELIB}/IPython/core/guarded_eval.pyo
 ${PYSITELIB}/IPython/core/history.py
 ${PYSITELIB}/IPython/core/history.pyc
 ${PYSITELIB}/IPython/core/history.pyo
@@ -273,6 +275,9 @@ ${PYSITELIB}/IPython/core/tests/test_ext
 ${PYSITELIB}/IPython/core/tests/test_formatters.py
 ${PYSITELIB}/IPython/core/tests/test_formatters.pyc
 ${PYSITELIB}/IPython/core/tests/test_formatters.pyo
+${PYSITELIB}/IPython/core/tests/test_guarded_eval.py
+${PYSITELIB}/IPython/core/tests/test_guarded_eval.pyc
+${PYSITELIB}/IPython/core/tests/test_guarded_eval.pyo
 ${PYSITELIB}/IPython/core/tests/test_handlers.py
 ${PYSITELIB}/IPython/core/tests/test_handlers.pyc
 ${PYSITELIB}/IPython/core/tests/test_handlers.pyo
@@ -454,9 +459,13 @@ ${PYSITELIB}/IPython/lib/tests/test_lexe
 ${PYSITELIB}/IPython/lib/tests/test_pretty.py
 ${PYSITELIB}/IPython/lib/tests/test_pretty.pyc
 ${PYSITELIB}/IPython/lib/tests/test_pretty.pyo
+${PYSITELIB}/IPython/lib/tests/test_pygments.py
+${PYSITELIB}/IPython/lib/tests/test_pygments.pyc
+${PYSITELIB}/IPython/lib/tests/test_pygments.pyo
 ${PYSITELIB}/IPython/paths.py
 ${PYSITELIB}/IPython/paths.pyc
 ${PYSITELIB}/IPython/paths.pyo
+${PYSITELIB}/IPython/py.typed
 ${PYSITELIB}/IPython/sphinxext/__init__.py
 ${PYSITELIB}/IPython/sphinxext/__init__.pyc
 ${PYSITELIB}/IPython/sphinxext/__init__.pyo

Index: pkgsrc/devel/py-ipython/distinfo
diff -u pkgsrc/devel/py-ipython/distinfo:1.55 pkgsrc/devel/py-ipython/distinfo:1.56
--- pkgsrc/devel/py-ipython/distinfo:1.55       Mon Nov 28 17:58:59 2022
+++ pkgsrc/devel/py-ipython/distinfo    Tue Jan  3 21:22:01 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.55 2022/11/28 17:58:59 adam Exp $
+$NetBSD: distinfo,v 1.56 2023/01/03 21:22:01 adam Exp $
 
-BLAKE2s (ipython-8.7.0.tar.gz) = 347fba3abdf6bcb00039c1ec6aea65546a4511b32b0408740aca5c4fa8102f42
-SHA512 (ipython-8.7.0.tar.gz) = 4652d06d1a0cf33a2b55f640d6bcc3fd9f1f644c848e869bc3807da8f4166060798ea5629fa80cc98a4a79b8ea1cde6013507eae859354a5db270b7fb3cca6bf
-Size (ipython-8.7.0.tar.gz) = 5329857 bytes
+BLAKE2s (ipython-8.8.0.tar.gz) = 8fdf250cc9c55920d4842f52b84232c526754382c73af109f3cc5d55b9e838d2
+SHA512 (ipython-8.8.0.tar.gz) = 18e8eaa285fe6278a27ffd2edcf4eccf629e05a8718faa721013d0433822ff8b850a2060135f26b5254a96b7ae0139e2ff4338676c08d3271a12c1b91532d7d1
+Size (ipython-8.8.0.tar.gz) = 5341086 bytes
 SHA1 (patch-setupbase.py) = 241463d5368a4c80c8194244f5c3895196b44da5



Home | Main Index | Thread Index | Old Index