From 6be1a798bed8639d39e6dc2b3f8bb89f24d06950 Mon Sep 17 00:00:00 2001 From: Simon Branford <4967+branfosj@users.noreply.github.com> Date: Mon, 23 Jun 2025 19:08:16 +0100 Subject: [PATCH] fix `TypeError: '<' not supported between instances of 'int' and 'tuple'` --- test/framework/easyblock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/framework/easyblock.py b/test/framework/easyblock.py index 3f82d142e3..5d4c3d19ee 100644 --- a/test/framework/easyblock.py +++ b/test/framework/easyblock.py @@ -1970,7 +1970,7 @@ def test_fetch_sources_git(self): self.assertEqual(eb.src[0]['cmd'], None) reference_checksum = "00000000" - if sys.version_info[0] < (3, 9): + if sys.version_info < (3, 9): # checksums of tarballs made by EB cannot be reliably checked prior to Python 3.9 # due to changes introduced in python/cpython#90021 reference_checksum = None