Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync with develop (20241226) #4732

Merged
merged 3 commits into from
Dec 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions easybuild/tools/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ def list_toolchains_md(tcs):
none_txt = '*(none)*'

# Initialize an empty list of lists for the table data
table_values = [[] for i in range(len(table_titles))]
table_values = [[] for _ in range(len(table_titles))]

for col_id, col_name in enumerate(table_titles):
if col_name == 'NAME':
Expand All @@ -1157,6 +1157,8 @@ def list_toolchains_md(tcs):
entry = 'cray-mpich'
elif col_name == 'LINALG':
entry = 'cray-libsci'
else:
entry = none_txt
# Combine the linear algebra libraries into a single column
elif col_name == 'LINALG':
linalg = []
Expand Down Expand Up @@ -1201,7 +1203,7 @@ def list_toolchains_rst(tcs):
none_txt = '*(none)*'

# Initialize an empty list of lists for the table data
table_values = [[] for i in range(len(table_titles))]
table_values = [[] for _ in range(len(table_titles))]

for col_id, col_name in enumerate(table_titles):
if col_name == 'NAME':
Expand All @@ -1217,6 +1219,8 @@ def list_toolchains_rst(tcs):
entry = 'cray-mpich'
elif col_name == 'LINALG':
entry = 'cray-libsci'
else:
entry = none_txt
# Combine the linear algebra libraries into a single column
elif col_name == 'LINALG':
linalg = []
Expand Down
Loading