Skip to content

Commit

Permalink
Release new alpha version
Browse files Browse the repository at this point in the history
  • Loading branch information
thieu1995 committed Jun 12, 2023
1 parent ee610ff commit 2ec7436
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Different versions of mealpy in terms of passing hyper-parameters. So please car
+ Add a "amend_position()" function in Optimizer class. This function will call two functions.
+ bounded_position() from optimizer. This means for optimizer level (get in valid range of position)
+ amend_position() from problem. This means for problem level (transform to the correct solution)

+ Fix bugs coefficients in GWO-based optimizers.


# Version 2.5.3
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,19 @@ Our goals are to implement all of the classical as well as the state-of-the-art

# Installation

### Install with pip
### Install the stable (latest) version
Install the [current PyPI release](https://pypi.python.org/pypi/mealpy):
```sh
$ pip install mealpy==2.5.3
```

### Install from source
In case you want to install directly from the source code, use:
### Install the alpha/beta version
```sh
$ pip install mealpy==2.5.4a4
```

### Install the pre-release version
You can install pre-release directly from the source code:
```sh
$ git clone https://github.com/thieu1995/mealpy.git
$ cd mealpy
Expand Down
2 changes: 1 addition & 1 deletion mealpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# >>> print(f"Best solution: {best_position}, Best fitness: {best_fitness}")


__version__ = "2.5.4-alpha.3"
__version__ = "2.5.4-alpha.4"

from .bio_based import (BBO, BBOA, BMO, EOA, IWO, SBO, SMA, SOA, SOS, TPO, TSA, VCS, WHO)
from .evolutionary_based import (CRO, DE, EP, ES, FPA, GA, MA)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def readme():

setup(
name="mealpy",
version="2.5.4-alpha.3",
version="2.5.4-alpha.4",
author="Thieu",
author_email="nguyenthieu2102@gmail.com",
description="MEALPY: An Open-source Library for Latest Meta-heuristic Algorithms in Python",
Expand Down

0 comments on commit 2ec7436

Please sign in to comment.