Skip to content

Commit c497d48

Browse files
committed
Release: ipywidgets 8.1.4, widgetsnbextension 4.0.12, jupyterlab_widgets
3.0.12 python/ipywidgets/dist/ipywidgets-8.1.4-py3-none-any.whl md5: 7cb204b171b5869352519ac12c61589d sha1: d21eadf98812c9f14929d45320d63b0678d6e9fd sha256: d229c54d218e2f7dd263b8ec609e79eb33545db7ef91439e3709fc4b72332acd python/ipywidgets/dist/ipywidgets-8.1.4.tar.gz md5: 78a664e8ec47a6a783192f712c438542 sha1: 9c1e12710ec112b0656ecfb1d1862f7af3d8443d sha256: 85b5ef93ed4c809ab3bae892dd17bc6768590fde108cd987ce8321e6991f3139 python/widgetsnbextension/dist/widgetsnbextension-4.0.12-py3-none-any.whl md5: 091aca11358108901555787826b33c37 sha1: f331cbc5024c37f127e774c4ea9edfc3aff6717c sha256: 6b5e346d405fb993d24f47fb3dec56c850c51f41e6368bb52866192b848575c3 python/widgetsnbextension/dist/widgetsnbextension-4.0.12.tar.gz md5: 182ef4c7c438def55e2042cebed8970d sha1: f6d40b5e9f702888abf888e0ce04f167e6e9ddff sha256: 20c567a7fc0c9d8e405fda2e9bce6eb3656e350f2bd8921a4b660dd53f544f10 python/jupyterlab_widgets/dist/jupyterlab_widgets-3.0.12-py3-none-any.whl md5: f4e7a90740420f8d86854fd87c6b6699 sha1: 9c4ffb7b82e9ee165e8bae5c93b12ea219e29d23 sha256: 769944e6f2a8987de5000fcce948656ab9cbe906c97fdff1bdece795af65967b python/jupyterlab_widgets/dist/jupyterlab_widgets-3.0.12.tar.gz md5: fbb3bdd56e48c73b385aa10043ed4321 sha1: e42bf8662a7fa5dd37b45f7ce162d1efb5b000c9 sha256: 623ac0fee85f448a72631037121988c0e01809563b88cad4b047487791cf24ae
1 parent d14c4c6 commit c497d48

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

python/ipywidgets/ipywidgets/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = '8.1.3'
4+
__version__ = '8.1.4'
55

66
__protocol_version__ = '2.1.0'
77
__control_protocol_version__ = '1.0.0'

python/ipywidgets/setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ install_requires =
3737
comm>=0.1.3
3838
ipython>=6.1.0
3939
traitlets>=4.3.1
40-
widgetsnbextension~=4.0.11
41-
jupyterlab_widgets~=3.0.11
40+
widgetsnbextension~=4.0.12
41+
jupyterlab_widgets~=3.0.12
4242

4343
[options.extras_require]
4444
test =
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = '3.0.11'
4+
__version__ = '3.0.12'
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = '4.0.11'
4+
__version__ = '4.0.12'

scripts/hashes_fedora

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
for f in $@
3+
do
4+
echo "$f"
5+
echo md5: `md5sum "$f" | awk '{print $1}'`
6+
echo sha1: `sha1sum "$f" | awk '{print $1}'`
7+
echo sha256: `sha256sum "$f" | awk '{print $1}'`
8+
echo
9+
done

0 commit comments

Comments
 (0)