Skip to content

Commit

Permalink
Merge branch 'main' into drewj/block-rotate/1939
Browse files Browse the repository at this point in the history
* main:
  Changing default of syncDbAfterWrite to True (#1968)
  Removing upper bound pin on HDF5 (#1932)
  • Loading branch information
drewj-tp committed Oct 23, 2024
2 parents 57d7f99 + 63948ad commit e598435
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion armi/settings/fwSettings/databaseSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def defineSettings():
),
setting.Setting(
CONF_SYNC_AFTER_WRITE,
default=False,
default=True,
label="Sync Database After Write",
description=(
"Copy the output database from the fast scratch space to the shared "
Expand Down
1 change: 1 addition & 0 deletions doc/release/0.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ API Changes
#. ``Block.getPinCoordinates`` returns an ``(N, 3)`` array, rather than a length ``N`` list of three-length arrays. (`PR#1943 <https://github.com/terrapower/armi/pull/1943>`_)
#. Removing ``globalFluxInterface.DoseResultsMapper`` class. (`PR#1952 <https://github.com/terrapower/armi/pull/1952>`_)
#. Removing setting ``mpiTasksPerNode`` and renaming ``numProcessors`` to ``nTasks``. (`PR#1958 <https://github.com/terrapower/armi/pull/1958>`_)
#. Changing ``synDbAfterWrite`` default to ``True``. (`PR#1968 <https://github.com/terrapower/armi/pull/1968>`_)
#. TBD

Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ authors = [
]
dependencies = [
"coverage>=7.2.0", # Code coverage tool. Sadly baked into every Case.
"h5py>=3.9,<3.12 ; python_version >= '3.11.0'", # Needed because our database files are H5 format
"h5py>=3.9 ; python_version >= '3.11.0'", # Needed because our database files are H5 format
"h5py>=3.0,<=3.9 ; python_version < '3.11.0'",
"htmltree>=0.7.6", # Our reports have HTML output
"matplotlib>=3.5.3,<3.8.0", # Important plotting library
Expand Down

0 comments on commit e598435

Please sign in to comment.