Package: python-oslo.versionedobjects / 3.4.0-3

Metadata

Package Version Patches format
python-oslo.versionedobjects 3.4.0-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
fix sphinx build by deleting some doc.patch | (download)

doc/source/user/examples.rst | 4 1 3 - 0 !
1 file changed, 1 insertion( ), 3 deletions(-)

 "fix" sphinx build by deleting some doc
fixture_Drop_use_of_OrderedDict_for_Python_compat.patch | (download)

oslo_versionedobjects/fixture.py | 4 1 3 - 0 !
oslo_versionedobjects/tests/test_fixture.py | 4 1 3 - 0 !
oslo_versionedobjects/tests/test_objects.py | 2 1 1 - 0 !
3 files changed, 3 insertions( ), 7 deletions(-)

 fixture: drop use of ordereddict for python compat
 Python >= 3.12 changes the string representation of an OrderedDict
 which changes the md5 digest of an object; this causes a regression
 on the test_get_hashes unit test on newer Pythons.
 .
 Drop the use of OrderedDict and just use the sorted dictionary items;
 this changes the digest but is at least consistent across Python
 versions.
Bug: https://launchpad.net/bugs/2046220