File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55### Changes
66
7- - Implemented the DRSC algorithm for SumEquals constraints. A side-effect of this implementation is that you can now
8- ask for multiple points with opt.ask() while using this type of constraint (previously you could only ask for one).
9- - Dropped support for Python 3.9
7+ -
8+ -
109
1110### Bugfixes
1211
13- - Fixed TypeError when combining categorical and numerical dimensions in get_Brownie_Bee_Pareto
12+ -
13+ -
1414
15- ## Version 1.1.2 [ unpublished ]
15+ ## Version 1.1.2 [ published ]
1616
1717### Changes
1818
19+ - Implemented the DRSC algorithm for SumEquals constraints. A side-effect of this implementation is that you can now
20+ ask for multiple points with opt.ask() while using this type of constraint (previously you could only ask for one).
21+ - Dropped support for Python 3.9
1922- Added the get_Brownie_Bee_Pareto() function to support Pareto front plotting in the Brownie Bee user interface.
2023- Added the get_Pareto_front_compromise() function to facilitate a default highlighted compromise in the Pareto plot.
2124- Added the get_Brownie_Bee_1d_plot() function to support custom 1D dependency plots in the Brownie Bee user interface.
2730- Pareto front calculations are now reproducible.
2831- Fixes small error in legend generation of plot_objective_1d for the case where the user specifies a
2932 specific set of settings to create the plot at
33+ - Fixed TypeError when combining categorical and numerical dimensions in get_Brownie_Bee_Pareto
3034
3135## Version 1.1.1 [ published]
3236
Original file line number Diff line number Diff line change 4040from .samplers .doe import get_optimal_DOE
4141from .XpyriMentor import XpyriMentor
4242
43- __version__ = "1.1.1 "
43+ __version__ = "1.1.2 "
4444
4545
4646__all__ = (
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ If you have not packaged before check out https://packaging.python.org/tutorials
178178To upload a new version to PyPi do the following in the root folder of the project:
179179
180180- In terminal run the command "pytest" and make sure there are no errors
181- - Change version number in setup.py
181+ - Change version number in pyproject.toml
182182- Change version number in ProcessOptimizer/\_\_init\_\_.py
183183- Remember to `pip install twine` if running in a new virtual env. (You might also have to `pip install build`)
184184- Run `python -m build`
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " ProcessOptimizer"
7- version = " 1.1.1 "
7+ version = " 1.1.2 "
88description = " Sequential model-based optimization toolbox (forked from scikit-optimize)"
99license = { text = " BSD" }
1010authors = [
You can’t perform that action at this time.
0 commit comments