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.
1 parent c6f660e commit c220891Copy full SHA for c220891
scripts/compatibility_matrix.py
@@ -358,9 +358,8 @@ def nexenta():
358
for ver in vers:
359
# custom case for OpenZFS FreeBSD https://github.com/openzfs/zfs/pull/12735
360
if (feature == 'edonr' and name == openzfs_key and '.' in ver
361
- and (int(ver.split('.')[0]) <= 2
362
- or (int(ver.split('.')[0]) <= 1
363
- and int(ver.split('.')[1]) <= 1))):
+ and not (int(ver.split('.')[0]) >= 2
+ and int(ver.split('.')[1]) >= 2)):
364
html.write('<td class="yes">yes<sup><a href="#note_1">1</a></sup></td>')
365
elif (name, ver) in names:
366
html.write('<td class="yes">yes</td>')
0 commit comments