Skip to content

Commit 049b646

Browse files
committed
Merge branch 'development' into subch_clip
2 parents bfe9078 + cfb2536 commit 049b646

File tree

20 files changed

+203
-137
lines changed

20 files changed

+203
-137
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

CHANGES.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# 26.02
2+
3+
* update CI due to Microphysics optimizations (#3189, #3203)
4+
5+
* `Detonation` : fix plotting script for mass fractions (#3200)
6+
7+
* fix make flags in ``job_info`` (#3195)
8+
9+
* fix radiation compilation due to ``Array4`` changes (#3198)
10+
11+
* ``xrb_spherical`` : fix ash field in plot output
12+
13+
* cppcheck fixes
14+
15+
* update to C++20 (#3097)
16+
17+
* optimization and cleaning of ``check_for_negative_density`` (#3191)
18+
19+
* diffusion optimization and modernization (#3192)
20+
21+
* optimize a divide in SDC react (#3194)
22+
23+
* optimize the transverse flux correction in CTU hydro (#3181)
24+
25+
* ``massive_star`` : add another 3D visualization script
26+
27+
* optimize ``ambient_fill` (#3190)
28+
129
# 26.01
230

331
* `massive_star` : add volume-rendering scripts (#3186)

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
@@ -60,6 +60,7 @@ def get_version():
6060
'sphinx_copybutton',
6161
'sphinx_prompt',
6262
'breathe',
63+
'sphinx_rtd_theme_ext_color_contrast',
6364
'IPython.sphinxext.ipython_console_highlighting']
6465

6566
# bibtex

Exec/Make.auto_source

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ ifeq ($(USE_CUDA), TRUE)
150150
endif
151151

152152
clean_flags := $(filter-out --jobserver%,$(MAKEFLAGS))
153+
ifeq ($(strip $(clean_flags)),)
154+
clean_flags = $(MAKEOVERRIDES)
155+
endif
153156

154157
$(objEXETempDir)/AMReX_buildInfo.o: .FORCE
155158
@if [ ! -d $(objEXETempDir) ]; then mkdir -p $(objEXETempDir); fi

0 commit comments

Comments
 (0)