Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix install #214

Merged
merged 2 commits into from
Oct 13, 2023
Merged
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
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
# Release history

## Version 0.9.3 [unpublished]
## Version 0.9.4 [unpublished]

### Changes

-
-

### Bugfixes

-
-

## Version 0.9.3

### Changes

-

### Bugfixes

- Fix install bug that precluded installation of 0.9.2

## Version 0.9.2

### Changes

- Update ipynb file showing example of color_pH modelsystem. (Very minor)

### Bugfixes

- Fixed a bug in `expected_minimum` where SumEquals constraint values were not rescaled
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ProcessOptimizer\model_systems\data\color_pH_data.csv
2 changes: 1 addition & 1 deletion ProcessOptimizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from .plots import plot_evaluations, plot_convergence
from .plots import plot_Pareto, plot_expected_minimum_convergence

__version__ = "0.9.2"
__version__ = "0.9.3"


__all__ = (
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="ProcessOptimizer",
version="0.9.2",
version="0.9.3",
description="Sequential model-based optimization toolbox \
(forked from scikit-optimize)",
url="https://github.com/novonordisk-research/ProcessOptimizer",
Expand Down Expand Up @@ -52,4 +52,5 @@
},
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
)