Skip to content

Commit 67f669e

Browse files
committed
Format
1 parent caf56c6 commit 67f669e

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

CHANGELOG.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ Release 1.4.0
1313

1414
:Date: July 25, 2024
1515

16-
* Add a live_data option for real-time data collection / plotting. #1310
16+
* Add a ``live_data`` option for real-time data collection / plotting. #1310
1717
* ``nworkers``/``is_manager`` are set when ``Ensemble`` object is created. #1331/ #1336
1818
* This update locks the comms method when ``Ensemble`` object is created.
19-
* Add ``group_size`` option to deal with unevenly resourced nodes. #1349
19+
* Add a ``group_size`` option to deal with unevenly resourced nodes. #1349
2020
* Bug fix: Fix shutdown hang on worker error when using ``gen_on_manager``. #1348
2121
* Bug fix: Log level was locked to ``INFO`` when using class interface.
2222
* Updated code to support ``numpy`` 2.0.
2323

24-
2524
Documentation:
2625

2726
* Notebook examples with Colab links added to documentation. #1310

libensemble/tests/unit_tests/test_ensemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_ensemble_parse_args_false():
2222
from libensemble.ensemble import Ensemble
2323
from libensemble.specs import LibeSpecs
2424

25-
# Ensemble(parse_args=False) by default, so these specs wont be overwritten:
25+
# Ensemble(parse_args=False) by default, so these specs won't be overwritten:
2626
e = Ensemble(libE_specs={"comms": "local", "nworkers": 4})
2727
assert hasattr(e, "nworkers"), "nworkers should've passed from libE_specs to Ensemble class"
2828
assert isinstance(e.libE_specs, LibeSpecs), "libE_specs should've been cast to class"

0 commit comments

Comments
 (0)