We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeError: '<' not supported between instances of 'int' and 'tuple'
1 parent 68f9650 commit 6be1a79Copy full SHA for 6be1a79
test/framework/easyblock.py
@@ -1970,7 +1970,7 @@ def test_fetch_sources_git(self):
1970
self.assertEqual(eb.src[0]['cmd'], None)
1971
1972
reference_checksum = "00000000"
1973
- if sys.version_info[0] < (3, 9):
+ if sys.version_info < (3, 9):
1974
# checksums of tarballs made by EB cannot be reliably checked prior to Python 3.9
1975
# due to changes introduced in python/cpython#90021
1976
reference_checksum = None
0 commit comments