Package: python-wrapt / 1.15.0-4

Metadata

Package Version Patches format
python-wrapt 1.15.0-4 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
do not run test_proxy_attribute.patch | (download)

tests/test_object_proxy.py | 3 3 + 0 - 0 !
1 file changed, 3 insertions(+)

 avoid ftbfs
 It's looking like this test doesn't work. I'm just skipping it pending some
 more investigation.
Fix_classmethod_tests_with_Python_3.13.patch | (download)

tests/test_outer_classmethod.py | 18 10 + 8 - 0 !
tests/test_synchronized_lock.py | 26 14 + 12 - 0 !
2 files changed, 24 insertions(+), 20 deletions(-)

 fix classmethod tests with python 3.13+
 Fixes https://github.com/GrahamDumpleton/wrapt/issues/259
 .
 To fix the same failures on Python 3.9,
 they were adjusted in the past. For details see
 https://github.com/GrahamDumpleton/wrapt/issues/160
 .
 However, Python 3.13 reverted the change from 3.9,
 so this adds an upper bound for the conditionals.
 .
 To make the conditionals easier to read, the if-else branches were switched.