Skip to content

Commit b8691d2

Browse files
committed
Merge branch 'trunk-minor' into trunk-major
2 parents 6320489 + 2be377e commit b8691d2

File tree

9 files changed

+105
-88
lines changed

9 files changed

+105
-88
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
apt-get update
121121
apt-get install git --yes
122122
- name: Checkout
123-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
123+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
124124
with:
125125
path: code
126126
submodules: true
@@ -211,7 +211,7 @@ jobs:
211211
apt-get update
212212
apt-get install git --yes
213213
- name: Checkout
214-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
214+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
215215
with:
216216
path: code
217217

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
34+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3535
with:
3636
fetch-depth: 0
3737
submodules: true

.github/workflows/style.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
21+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222
- name: prek
2323
uses: glotzerlab/workflows/prek@894d9678188a02b06560fdeb2b9ba98d016cd371 # 0.10.0
2424

hoomd/hpmc/IntegratorHPMCMonoGPU.cu

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
22
// Part of HOOMD-blue, released under the BSD 3-Clause License.
33

4+
#include <cassert>
5+
46
#include "IntegratorHPMCMonoGPUTypes.cuh"
57

68
namespace hoomd

hoomd/hpmc/IntegratorHPMCMonoGPUMoves.cuh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
#pragma once
55

6+
#include <cassert>
7+
68
#include "hoomd/BoxDim.h"
79
#include "hoomd/HOOMDMath.h"
810
#include "hoomd/Index1D.h"

hoomd/md/EvaluatorPairFrictionLJVariants.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,8 @@ class EvaluatorPairFrictionLJCoulombNewton
120120
};
121121
} // namespace md
122122
} // namespace hoomd
123+
124+
#undef DEVICE
125+
#undef HOSTDEVICE
126+
123127
#endif // __PAIR_EVALUATOR_FRICTIONLJVARIANTS_H__

pixi.lock

Lines changed: 89 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sphinx-doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
if os.getenv("READTHEDOCS"):
4343
extensions.append("sphinx_copybutton")
4444
extensions.append("notfound.extension")
45-
# extensions.append("sphinxcontrib.googleanalytics")
45+
extensions.append("sphinxcontrib.googleanalytics")
4646
googleanalytics_id = "G-ZR0DNZD21E"
4747

4848
katex_prerender = True

sphinx-doc/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ accessible-pygments==0.0.5
44
# via furo
55
alabaster==1.0.0
66
# via sphinx
7-
asttokens==3.0.0
7+
asttokens==3.0.1
88
# via stack-data
99
attrs==25.4.0
1010
# via
@@ -86,7 +86,7 @@ nbformat==5.10.4
8686
# nbsphinx
8787
nbsphinx==0.9.7
8888
# via -r sphinx-doc/requirements.in
89-
numpy==2.3.4
89+
numpy==2.3.5
9090
# via -r sphinx-doc/requirements.in
9191
packaging==25.0
9292
# via
@@ -130,7 +130,7 @@ referencing==0.37.0
130130
# jsonschema-specifications
131131
requests==2.32.5
132132
# via sphinx
133-
rpds-py==0.28.0
133+
rpds-py==0.29.0
134134
# via
135135
# jsonschema
136136
# referencing

0 commit comments

Comments
 (0)