[13:26] Hello holmanb, I have just ran over an annoying issue with my last PR on DataSourceScaleway tied to Focal & Bionic : [13:26] In a few places in tests we check that the python minor version is >= 7 to use RequestsMock.assert_call_count() but I Have just found out [13:26] that this one is only available from Jammy onward. [13:26] So building deb pkgs on Focal or Bionic fails since unittests fail on this assert missing [13:27] Would it be feasible to fit a quick MR to change if sys.version_info.minor >= 7 for if sys.version_info.minor >= 10 so those asserts do not fail ? [13:36] This is bound to come up when pkgs are built for Focal & Bionic distro$ [14:02] btw it is problematic on Focal only. The skip remains valid for bionic [14:41] caribou: I'm not seeing the same issues with our daily builds, but if you are seeing an issue I'm guessing others might as well, and we should fix it, yes. [14:44] caribou: If you want to propose a fix (including the unittest errors), I can review it. [14:45] caribou: otherwise I can try to fix it, but more info to get a reproducer would be helpful for that [14:48] caribou: do you have the latest code? [14:48] Is it fixed with https://github.com/canonical/cloud-init/pull/2119 ? [14:48] -ubottu:#cloud-init- Pull 2119 in canonical/cloud-init "backport assert_call_count for old requests" [Merged] [14:48] @falcojr: +1 good point, I forgot about that fix [15:27] Oh, I didn't know about this one, good catch ! [15:27] and since I build on my own commit, I didn't get it; I'll build on the latest MAIN [15:27] thanks!