Closed EwoutH closed 2 months ago
I sent a PR to EMAWorkbench with two possible fixes. One in the PR and one in the PR's description, depending if you want to support both versions of just 1.3.0 moving forward.
Version 1.3.1
is published that adds these methods back. However, they now warn about being deprecated, so you may still see CI errors if pytest
is configured to fail on warnings.
If it's still causing issues for your CI, you might need to ignore these with something like:
import warnings
warnings.filterwarnings('ignore', message=".*PlatypusConfig.*", category=DeprecationWarning)
or
-Wignore::DeprecationWarning::
Thanks for both the bugfix release and the solutions provided!
Our CI detected a new import error, on using platypus-opt 1.3.0.
Location the import error originates from: outputspace_exploration.py#L30