2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2022-01-02 01:21:18 by Thomas Klausner | Files touched by this commit (2) |
Log message:
py-ipywidgets: convert to egg.mk
Bump PKGREVISION.
|
2021-12-30 14:05:42 by Adam Ciarcinski | Files touched by this commit (125) |
Log message:
Forget about Python 3.6
|
2021-10-26 13:31:15 by Nia Alarie | Files touched by this commit (1030) |
Log message:
www: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Not committed (merge conflicts):
www/nghttp2/distinfo
Unfetchable distfiles (almost certainly fetched conditionally...):
./www/nginx-devel/distinfo array-var-nginx-module-0.05.tar.gz
./www/nginx-devel/distinfo echo-nginx-module-0.62.tar.gz
./www/nginx-devel/distinfo encrypted-session-nginx-module-0.08.tar.gz
./www/nginx-devel/distinfo form-input-nginx-module-0.12.tar.gz
./www/nginx-devel/distinfo headers-more-nginx-module-0.33.tar.gz
./www/nginx-devel/distinfo lua-nginx-module-0.10.19.tar.gz
./www/nginx-devel/distinfo naxsi-1.3.tar.gz
./www/nginx-devel/distinfo nginx-dav-ext-module-3.0.0.tar.gz
./www/nginx-devel/distinfo nginx-rtmp-module-1.2.2.tar.gz
./www/nginx-devel/distinfo nginx_http_push_module-1.2.10.tar.gz
./www/nginx-devel/distinfo ngx_cache_purge-2.5.1.tar.gz
./www/nginx-devel/distinfo ngx_devel_kit-0.3.1.tar.gz
./www/nginx-devel/distinfo ngx_http_geoip2_module-3.3.tar.gz
./www/nginx-devel/distinfo njs-0.5.0.tar.gz
./www/nginx-devel/distinfo set-misc-nginx-module-0.32.tar.gz
./www/nginx/distinfo array-var-nginx-module-0.05.tar.gz
./www/nginx/distinfo echo-nginx-module-0.62.tar.gz
./www/nginx/distinfo encrypted-session-nginx-module-0.08.tar.gz
./www/nginx/distinfo form-input-nginx-module-0.12.tar.gz
./www/nginx/distinfo headers-more-nginx-module-0.33.tar.gz
./www/nginx/distinfo lua-nginx-module-0.10.19.tar.gz
./www/nginx/distinfo naxsi-1.3.tar.gz
./www/nginx/distinfo nginx-dav-ext-module-3.0.0.tar.gz
./www/nginx/distinfo nginx-rtmp-module-1.2.2.tar.gz
./www/nginx/distinfo nginx_http_push_module-1.2.10.tar.gz
./www/nginx/distinfo ngx_cache_purge-2.5.1.tar.gz
./www/nginx/distinfo ngx_devel_kit-0.3.1.tar.gz
./www/nginx/distinfo ngx_http_geoip2_module-3.3.tar.gz
./www/nginx/distinfo njs-0.5.0.tar.gz
./www/nginx/distinfo set-misc-nginx-module-0.32.tar.gz
|
2021-10-07 17:09:00 by Nia Alarie | Files touched by this commit (1033) |
Log message:
www: Remove SHA1 hashes for distfiles
|
2021-06-10 21:02:26 by Adam Ciarcinski | Files touched by this commit (2) | ![Package updated](https://pkgsrc.se/images/update.gif) |
Log message:
py-ipywidgets: updated to 7.6.3
7.6
---
To see the full list of pull requests and issues, see the [7.6.0 \
milestone](https://github.com/jupyter-widgets/ipywidgets/milestone/31?closed=1) \
on GitHub.
The main change in this release is that installing `ipywidgets` 7.6.0 will now \
automatically enable ipywidgets support in JupyterLab 3.0—a user has no extra \
JupyterLab installation step and no rebuild of JupyterLab, nor do they need \
Node.js installed. Simply install the python ipywidgets package with pip (`pip \
install ipywidgets==7.6.0`) or conda/mamba (`conda install -c conda-forge \
ipywidgets=7.6.0`) and ipywidgets will automatically work in classic Jupyter \
Notebook and in JupyterLab 3.0.
This is accomplished with the new python package `jupyterlab_widgets` version \
1.0, on which `ipywidgets` 7.6.0 now depends (similar to how `ipywidgets` \
already depends on the `widgetsnbextension` package to configure ipywidgets for \
the classic Jupyter Notebook). The `jupyterlab_widgets` Python package is a \
JupyterLab 3.0 prebuilt extension, meaning that it can be installed into \
JupyterLab 3.0 without rebuilding JupyterLab and without needing Node.js \
installed.
Updates for Widget Maintainers
Custom widget maintainers will need to make two changes to update for JupyterLab 3:
1. Update the `@jupyter-widgets/base` dependency version to include `^4` to work \
in JupyterLab 3.0. For example, if you had a dependency on \
`@jupyter-widgets/base` version `^2 || ^3`, update to `^2 || ^3 || ^4` for your \
widget to work in classic Jupyter Notebook, JupyterLab 1, JupyterLab 2, and \
JupyterLab 3.
2. In the `package.json`, add the following `sharedPackages` configuration \
inside the `jupyterlab` key. See the [JupyterLab extension \
documentation](https://jupyterlab.readthedocs.io/en/stable/extension/extension_dev.html#requiring-a-service) \
for more information.
```json
"jupyterlab": {
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
```
Separate from these two steps to update for JupyterLab 3, we also recommend that \
you make your widget's JupyterLab extension a prebuilt extension for JupyterLab \
3.0. Users will be able to install your JupyterLab 3.0 prebuilt extension \
without rebuilding JupyterLab or needing Node.js. See the [JupyterLab 3 \
extension developer \
documentation](https://jupyterlab.readthedocs.io/en/stable/extension/extension_dev.html) \
or the new [widget extension \
cookiecutter](https://github.com/jupyter-widgets/widget-ts-cookiecutter/tree/jlab3) \
for more details.
|
2020-08-10 01:37:32 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message:
Apply python restrict of py-ipykernel cursively
|
2020-01-26 18:32:28 by Roland Illig | Files touched by this commit (981) |
Log message:
all: migrate homepages from http to https
pkglint -r --network --only "migrate"
As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.
|
2019-08-21 14:41:24 by Adam Ciarcinski | Files touched by this commit (4) |
Log message:
py-ipywidgets: added version 7.5.1
Interactive HTML widgets for Jupyter notebooks and the IPython kernel.
|