py-ipyparallel: updated to 8.7.0

8.7.0 - 2024-03-04

8.7 is a small release, with a few improvements and updates, mostly related to
compatibility with different versions of JupyterLab, Notebook, and Jupyter
Server.

Highlights:

- JupyterLab 4 compatibility for the lab extension
- Improved logging and deprecation messages for different versions of Jupyter Server and Notebook

New features added

- Update labextension to jupyterlab 4
- add `ControllerLauncher.connection_info_timeout` config

Enhancements made

- log launcher output at warning-level in case of nonzero exit code
- improve deprecation messaging around `ipcluster nbextension`

Bugs fixed

- Use pre-3.10 serialization code on PyPy3.10
- fallback import when using notebook and jupyter_server is unavailable
- don't propagate logs in IPython
This commit is contained in:
adam 2024-03-05 16:55:53 +00:00
parent 69709c45f0
commit c71dbbadf5
3 changed files with 12 additions and 19 deletions

View File

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.11 2023/10/28 19:57:13 wiz Exp $
# $NetBSD: Makefile,v 1.12 2024/03/05 16:55:53 adam Exp $
DISTNAME= ipyparallel-8.6.1
DISTNAME= ipyparallel-8.7.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
PKGREVISION= 1
CATEGORIES= parallel python
MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipyparallel/}
@ -12,7 +11,7 @@ COMMENT= Interactive Parallel Computing with IPython
LICENSE= modified-bsd
TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=0.25:../../devel/py-hatchling
#TOOL_DEPENDS+= ${PYPKGPREFIX}-jupyterlab>=3.0.0:../../www/py-jupyterlab
#TOOL_DEPENDS+= ${PYPKGPREFIX}-jupyterlab>=4:../../www/py-jupyterlab
DEPENDS+= ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator
DEPENDS+= ${PYPKGPREFIX}-entrypoints-[0-9]*:../../devel/py-entrypoints
DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.1:../../time/py-dateutil
@ -24,7 +23,6 @@ DEPENDS+= ${PYPKGPREFIX}-tornado>=5.1:../../www/py-tornado
DEPENDS+= ${PYPKGPREFIX}-tqdm-[0-9]*:../../misc/py-tqdm
DEPENDS+= ${PYPKGPREFIX}-traitlets>=4.3:../../devel/py-traitlets
DEPENDS+= ${PYPKGPREFIX}-zmq>=18.0.0:../../net/py-zmq
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio-[0-9]*:../../devel/py-test-asyncio
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
#TEST_DEPENDS+= ${PYPKGPREFIX}-test-tornado-[0-9]*:../../devel/py-test-tornado
@ -48,9 +46,6 @@ post-install:
${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
.endfor
do-test:
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
.include "../../lang/python/application.mk"
.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.8 2023/10/28 19:57:13 wiz Exp $
@comment $NetBSD: PLIST,v 1.9 2024/03/05 16:55:53 adam Exp $
bin/ipcluster-${PYVERSSUFFIX}
bin/ipcontroller-${PYVERSSUFFIX}
bin/ipengine-${PYVERSSUFFIX}
@ -157,9 +157,8 @@ ${PYSITELIB}/ipyparallel/joblib.pyo
${PYSITELIB}/ipyparallel/labextension/package.json
${PYSITELIB}/ipyparallel/labextension/schemas/ipyparallel-labextension/package.json.orig
${PYSITELIB}/ipyparallel/labextension/schemas/ipyparallel-labextension/plugin.json
${PYSITELIB}/ipyparallel/labextension/static/114.b63b1cb1deb6ab07694a.js
${PYSITELIB}/ipyparallel/labextension/static/592.2265e4df71d8ba0dbbf6.js
${PYSITELIB}/ipyparallel/labextension/static/remoteEntry.f5bc00ef0248261af0b1.js
${PYSITELIB}/ipyparallel/labextension/static/998.d38d80ac3e2fa7501089.js
${PYSITELIB}/ipyparallel/labextension/static/remoteEntry.ccf2bfedaae5f1da1a90.js
${PYSITELIB}/ipyparallel/labextension/static/style.js
${PYSITELIB}/ipyparallel/labextension/static/third-party-licenses.json
${PYSITELIB}/ipyparallel/logger.py
@ -279,9 +278,8 @@ ${PYSITELIB}/ipyparallel/util.pyo
share/jupyter/labextensions/ipyparallel-labextension/package.json
share/jupyter/labextensions/ipyparallel-labextension/schemas/ipyparallel-labextension/package.json.orig
share/jupyter/labextensions/ipyparallel-labextension/schemas/ipyparallel-labextension/plugin.json
share/jupyter/labextensions/ipyparallel-labextension/static/114.b63b1cb1deb6ab07694a.js
share/jupyter/labextensions/ipyparallel-labextension/static/592.2265e4df71d8ba0dbbf6.js
share/jupyter/labextensions/ipyparallel-labextension/static/remoteEntry.f5bc00ef0248261af0b1.js
share/jupyter/labextensions/ipyparallel-labextension/static/998.d38d80ac3e2fa7501089.js
share/jupyter/labextensions/ipyparallel-labextension/static/remoteEntry.ccf2bfedaae5f1da1a90.js
share/jupyter/labextensions/ipyparallel-labextension/static/style.js
share/jupyter/labextensions/ipyparallel-labextension/static/third-party-licenses.json
share/jupyter/nbextensions/ipyparallel/clusterlist.css

View File

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.6 2023/05/04 18:11:57 adam Exp $
$NetBSD: distinfo,v 1.7 2024/03/05 16:55:54 adam Exp $
BLAKE2s (ipyparallel-8.6.1.tar.gz) = ecdb8ecd3a888ce9597ac3513ee1b254c0445237529782e3f8dbcbb6f5b20a81
SHA512 (ipyparallel-8.6.1.tar.gz) = e83447f9d52eed87e8513d2ee74d2d6b589a5c04b5bf6dfece6d87565dd9c5e46abd280eb5ab64266b2e759dec1007ab007d0b8232b6239768190bd6900f53ff
Size (ipyparallel-8.6.1.tar.gz) = 6807935 bytes
BLAKE2s (ipyparallel-8.7.0.tar.gz) = 23d54520ce42eb1ac920925243ff2d97d4bcec4d37900e34b15dd2e3759d200c
SHA512 (ipyparallel-8.7.0.tar.gz) = 96b9a3c1435dcb609c81856e5fc2763265a14610483e9d6c1a0b1fe5f7d6981d42d8f0d7b0c245cdf1fec10d4a832854dc745ca02ce90623734216dc858bb322
Size (ipyparallel-8.7.0.tar.gz) = 6798726 bytes