Skip to content

Commit 7c59373

Browse files
authored
Merge pull request #1253 from Libensemble/release/v_1.2.1
Release/v 1.2.1
2 parents ce47158 + 325abb2 commit 7c59373

32 files changed

+194
-185
lines changed

.codecov.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ignore:
2+
- "libensemble/tools/parse_args.py"
3+
- "libensemble/tools/forkable_pdb.py"
4+
- "libensemble/sim_funcs/executor_hworld.py"

.github/workflows/basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@ jobs:
167167
runs-on: ubuntu-latest
168168
steps:
169169
- uses: actions/checkout@v4
170-
- uses: crate-ci/[email protected].1
170+
- uses: crate-ci/[email protected].2

.github/workflows/extra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,4 +250,4 @@ jobs:
250250
runs-on: ubuntu-latest
251251
steps:
252252
- uses: actions/checkout@v4
253-
- uses: crate-ci/[email protected].1
253+
- uses: crate-ci/[email protected].2

.wci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ description: |
1616
language: Python
1717

1818
release:
19-
version: 1.2.0
20-
date: 2024-02-08
19+
version: 1.2.1
20+
date: 2024-02-23
2121

2222
documentation:
2323
general: https://libensemble.readthedocs.io

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ GitHub issues are referenced, and can be viewed with hyperlinks on the `github r
88

99
.. _`github releases page`: https://github.com/Libensemble/libensemble/releases
1010

11+
Release 1.2.1
12+
--------------
13+
14+
:Date: February 23, 2024
15+
16+
* Fix documentation bug where pydantic models do not display correctly. #1249
17+
* Improve internal efficiency. #1243 / #1249
18+
19+
:Note:
20+
21+
* Tests were run on Linux and MacOS with Python versions 3.9, 3.10, 3.11, 3.12
22+
* Heterogeneous workflows tested on Aurora (ALCF), Frontier (OLCF), Polaris, and Perlmutter (NERSC).
23+
* Tests were also run on Bebop and Improv LCRC systems.
24+
25+
:Known Issues:
26+
27+
* See known issues section in the documentation.
28+
1129
Release 1.2.0
1230
--------------
1331

docs/data_structures/gen_specs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Can be constructed and passed to libEnsemble as a Python class or a dictionary.
2323
2424
gen_specs = GenSpecs(
2525
gen_f=gen_random_sample,
26-
out=[("x", float, (1,))],
26+
outputs=[("x", float, (1,))],
2727
user={
2828
"lower": np.array([-3]),
2929
"upper": np.array([3]),

docs/data_structures/persis_info.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Examples:
3838
:linenos:
3939
:start-at: for wid in support.avail_worker_ids():
4040
:end-before: # Give sim work if possible
41-
:emphasize-lines: 3-4
4241
:caption: libensemble/alloc_funcs/fast_alloc.py
4342

4443
.. tab-item:: Tracking running generators

docs/data_structures/sim_specs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Can be constructed and passed to libEnsemble as a Python class or a dictionary.
2323
sim_specs = SimSpecs(
2424
sim_f=sim_find_sine,
2525
inputs=["x"],
26-
out=[("y", float)],
26+
outputs=[("y", float)],
2727
user={"batch": 1234},
2828
)
2929
...

docs/nitpicky

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ py:class numpy.typing.NDArray
1313
py:class numpy._typing._generic_alias.ScalarType
1414
py:class numpy._typing._dtype_like._DTypeDict
1515
py:class numpy._typing._dtype_like._SupportsDType
16+
py:class numpy._typing._array_like._ScalarType_co
1617

1718
# Pending on python docs links issue #11975
1819
py:class list
@@ -34,6 +35,8 @@ py:class int
3435
py:class <class 'dict'>
3536
py:class <class 'int'>
3637
py:class +ScalarType
38+
py:class +_ScalarType_co
39+
py:class collections.abc.Sequence
3740

3841
# Internal paths that are verified importable but Sphinx can't find
3942
py:class libensemble.resources.platforms.Aurora

install/misc_feature_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
globus-compute-sdk==2.12.0
1+
globus-compute-sdk==2.13.0

0 commit comments

Comments
 (0)