Skip to content

Commit 6f3cf6a

Browse files
authored
Merge branch 'development' into add_changelog_to_docs
2 parents 6ea63cd + cfb2536 commit 6f3cf6a

File tree

10 files changed

+44
-19
lines changed

10 files changed

+44
-19
lines changed

.github/workflows/check-ifdefs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v6
11-
with:
12-
fetch-depth: 0
1311

1412
- name: Setup Python
1513
uses: actions/setup-python@v6
1614
with:
17-
python-version: '3.11'
15+
python-version: '3.14'
1816

1917
- name: Run check-ifdefs
2018
run: |

.github/workflows/check-makefiles.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v6
18-
with:
19-
fetch-depth: 0
2018

2119
- name: Setup Python
2220
uses: actions/setup-python@v6
2321
with:
24-
python-version: '3.11'
22+
python-version: '3.14'
2523

26-
- name: Run check-ifdefs
24+
- name: Run check_makefiles
2725
run: |
2826
python .github/workflows/check_makefiles.py
2927

.github/workflows/check-params.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v6
18-
with:
19-
fetch-depth: 0
2018

2119
- name: Get submodules
2220
run: |
@@ -30,7 +28,7 @@ jobs:
3028
- name: Setup Python
3129
uses: actions/setup-python@v6
3230
with:
33-
python-version: '3.11'
31+
python-version: '3.14'
3432

3533
- name: Run check-params
3634
run: |

.github/workflows/codespell.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v6
11-
with:
12-
fetch-depth: 0
1311

1412
- name: Setup Python
1513
uses: actions/setup-python@v6
1614
with:
17-
python-version: '3.11'
15+
python-version: '3.14'
1816
cache: "pip"
1917

2018
- name: Install dependencies

.github/workflows/docs-test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v6
15-
with:
16-
fetch-depth: 0
15+
1716
- name: Install pandoc and doxygen
1817
run: |
1918
sudo apt install pandoc doxygen
2019
2120
- name: Setup Python
2221
uses: actions/setup-python@v6
2322
with:
24-
python-version: '3.11'
23+
python-version: '3.14'
2524
cache: "pip"
2625

2726
- name: Install dependencies

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Python
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: '3.11'
23+
python-version: '3.14'
2424
cache: "pip"
2525

2626
- name: Upgrade pip

Docs/source/_static/theme_overrides.css

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ div#example-notebook div.highlight-default div.highlight {
3434

3535
.wy-side-nav-search>div.branch{
3636
font-weight:normal;
37-
color:rgba(255,255,255,0.3);
37+
color:rgba(255,255,255);
3838
font-size:100%;
3939
display:inline-block;
4040
padding:4px 6px;
@@ -47,4 +47,25 @@ div#example-notebook div.highlight-default div.highlight {
4747
margin-bottom:.809em; */
4848
color:#fcfcfc;
4949
font-weight:bold;
50-
}
50+
}
51+
52+
/* Underline links everywhere */
53+
.wy-nav-content a {
54+
text-decoration: underline;
55+
text-decoration-style: dotted;
56+
text-underline-offset: 0.15em;
57+
}
58+
59+
/* Left sidebar navigation links */
60+
.wy-menu a {
61+
text-decoration-line: underline;
62+
text-decoration-style: dotted;
63+
text-underline-offset: 0.15em;
64+
}
65+
66+
.wy-side-nav-search a {
67+
text-decoration-line: underline;
68+
text-decoration-style: dotted;
69+
text-underline-offset: 0.15em;
70+
}
71+

Docs/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def get_version():
6161
'sphinx_prompt',
6262
'sphinx_mdinclude',
6363
'breathe',
64+
'sphinx_rtd_theme_ext_color_contrast',
6465
'IPython.sphinxext.ipython_console_highlighting']
6566

6667
# bibtex

Source/driver/Castro_io.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,11 +864,20 @@ Castro::writeBuildInfo ()
864864

865865
std::cout << "\n";
866866

867+
std::cout << "make flags: " << buildInfoGetMakeFlags() << "\n";
868+
869+
std::cout << "\n";
870+
867871
std::cout << "COMP: " << buildInfoGetComp() << "\n";
868872
std::cout << "COMP version: " << buildInfoGetCompVersion() << "\n";
869873

870874
std::cout << "\n";
871875

876+
#ifdef AMREX_USE_CUDA
877+
std::cout << "CUDA version: " << buildInfoGetCUDAVersion() << "\n";
878+
std::cout << "\n";
879+
#endif
880+
872881
std::cout << "C++ compiler: " << buildInfoGetCXXName() << "\n";
873882
std::cout << "C++ flags: " << buildInfoGetCXXFlags() << "\n";
874883

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ codespell
1414
sphinx-math-dollar
1515
sphinx-copybutton
1616
sphinx-mdinclude
17+
18+
# for accessibility
19+
sphinx-rtd-theme-ext-color-contrast

0 commit comments

Comments
 (0)