Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## latest

- Add defaults for optional configuration parameters and require mandatory inputs with clear ConfigError when missing [#154](https://github.com/precice/micro-manager/issues/154)
- Added coverage testing and simulation interface tests [#225](https://github.com/precice/micro-manager/pull/225)
- Added `--test-dependencies` CLI flag to check if all required dependencies are correctly installed, with clear error messages listing missing packages and how to fix them [#221](https://github.com/precice/micro-manager/pull/221)
- Added load balancing based on micro simulation solve timings [#228](https://github.com/precice/micro-manager/pull/228)
Expand Down
2 changes: 1 addition & 1 deletion micro_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _check_dependencies():

# Delay heavy imports if only running dependency check
if "--test-dependencies" not in sys.argv:
from .config import Config
from .config import Config, ConfigError
from .micro_simulation import MicroSimulationInterface
from .micro_manager import MicroManagerCoupling

Expand Down
Loading
Loading