Bug 2086425 - python-ipywidgets fails to build with Python 3.11: ValueError: None cannot be transformed to a widget
Summary: python-ipywidgets fails to build with Python 3.11: ValueError: None cannot be...
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: python-ipywidgets
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Lumír Balhar
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: PYTHON3.11
TreeView+ depends on / blocked
 
Reported: 2022-05-16 06:30 UTC by Tomáš Hrnčiar
Modified: 2022-06-10 06:21 UTC (History)
4 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2022-06-10 06:21:41 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Github jupyter-widgets ipywidgets issues 3459 0 None open One test fails with Python 3.11 beta 1 2022-05-16 12:58:37 UTC
Github jupyter-widgets ipywidgets pull 3478 0 None open Use `dict` instead of `print` to test callable without signature 2022-06-08 08:23:11 UTC

Description Tomáš Hrnčiar 2022-05-16 06:30:08 UTC
python-ipywidgets fails to build with Python 3.11.0b1.

=================================== FAILURES ===================================
___________________________ test_interact_noinspect ____________________________

    def test_interact_noinspect():
        a = u'hello'
>       c = interactive(print, a=a)

ipywidgets/widgets/tests/test_interaction.py:702: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
ipywidgets/widgets/interaction.py:201: in __init__
    self.kwargs_widgets = self.widgets_from_abbreviations(new_kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = interactive(_dom_classes=('widget-interact',))
seq = [('sep', ' ', ' '), ('end', '\n', '\n'), ('file', None, None), ('flush', False, False)]

    def widgets_from_abbreviations(self, seq):
        """Given a sequence of (name, abbrev, default) tuples, return a sequence of Widgets."""
        result = []
        for name, abbrev, default in seq:
            widget = self.widget_from_abbrev(abbrev, default)
            if not (isinstance(widget, ValueWidget) or isinstance(widget, fixed)):
                if widget is None:
>                   raise ValueError("{!r} cannot be transformed to a widget".format(abbrev))
E                   ValueError: None cannot be transformed to a widget

ipywidgets/widgets/interaction.py:301: ValueError
=============================== warnings summary ===============================

https://docs.python.org/3.11/whatsnew/3.11.html

For the build logs, see:
https://copr-be.cloud.fedoraproject.org/results/@python/python3.11/fedora-rawhide-x86_64/04409634-python-ipywidgets/

For all our attempts to build python-ipywidgets with Python 3.11, see:
https://copr.fedorainfracloud.org/coprs/g/python/python3.11/package/python-ipywidgets/

Testing and mass rebuild of packages is happening in copr. You can follow these instructions to test locally in mock if your package builds with Python 3.11:
https://copr.fedorainfracloud.org/coprs/g/python/python3.11/

Let us know here if you have any questions.

Python 3.11 is planned to be included in Fedora 37. To make that update smoother, we're building Fedora packages with all pre-releases of Python 3.11.
A build failure prevents us from testing all dependent packages (transitive [Build]Requires), so if this package is required a lot, it's important for us to get it fixed soon.
We'd appreciate help from the people who know this package best, but if you don't want to work on this now, let us know so we can try to work around it on our side.

Comment 1 Lumír Balhar 2022-05-16 12:58:38 UTC
Reported upstream.

Comment 2 Lumír Balhar 2022-06-08 08:23:12 UTC
Fix proposed upstream.


Note You need to log in before you can comment on or make changes to this bug.