Package: nbclient / 0.8.0-3

Metadata

Package Version Patches format
nbclient 0.8.0-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
skip ipywidgets tests.patch | (download)

nbclient/tests/test_client.py | 5 2 + 3 - 0 !
1 file changed, 2 insertions(+), 3 deletions(-)

 patch flaky or unavailable tests

* Don't test ipywidgets (up to date version not available)
* Skip other notebook tests which appear to race
* Extend timeouts for parallel tests

documentation fixes.patch | (download)

docs/autogen_config.py | 2 1 + 1 - 0 !
docs/conf.py | 2 0 + 2 - 0 !
2 files changed, 1 insertion(+), 3 deletions(-)

 documentation fixes

drop_privacy_breaches.patch | (download)

docs/index.rst | 17 1 + 16 - 0 !
1 file changed, 1 insertion(+), 16 deletions(-)

 don't display social shields/badges of honor in the shipped
 documentation (privacy breach)

0004 Skip flaky tests.patch | (download)

nbclient/tests/test_client.py | 10 0 + 10 - 0 !
1 file changed, 10 deletions(-)

 skip flaky tests


py313 deprecation.patch | (download)

nbclient/jsonutil.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 avoid a deprecationwarning on python 3.13+

    ...
    /usr/lib/python3.13/site-packages/nbclient/jsonutil.py:29: in <module>
        datetime.strptime("1", "%d")
    /usr/lib64/python3.13/_strptime.py:573: in _strptime_datetime
        tt, fraction, gmtoff_fraction = _strptime(data_string, format)
    /usr/lib64/python3.13/_strptime.py:336: in _strptime
        format_regex = _TimeRE_cache.compile(format)
    /usr/lib64/python3.13/_strptime.py:282: in compile
        return re_compile(self.pattern(format), IGNORECASE)
    /usr/lib64/python3.13/_strptime.py:270: in pattern
        warnings.warn("""\
    E   DeprecationWarning: Parsing dates involving a day of month without a year specified is ambiguious
    E   and fails to parse leap day. The default behavior will change in Python 3.15