diff --git a/docs/source/index.rst b/docs/source/index.rst index d03c723..95bb150 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -6,7 +6,7 @@ Welcome to OPFUNU's documentation! ================================== -.. image:: https://img.shields.io/badge/release-1.0.1-yellow.svg +.. image:: https://img.shields.io/badge/release-1.0.2-yellow.svg :target: https://github.com/thieu1995/opfunu/releases .. image:: https://img.shields.io/pypi/wheel/gensim.svg diff --git a/opfunu/__init__.py b/opfunu/__init__.py index c2b5236..4183b4c 100644 --- a/opfunu/__init__.py +++ b/opfunu/__init__.py @@ -29,7 +29,7 @@ # >>> opfunu.plot_2d(f22005, n_space=1000, ax=None) # >>> opfunu.plot_3d(f22005, n_space=1000, ax=None) -__version__ = "1.0.1" +__version__ = "1.0.2" import inspect import re @@ -109,6 +109,8 @@ def get_all_named_functions(): def get_all_cec_functions(): return [cls for classname, cls in CEC_DATABASE if classname not in EXCLUDES] + + def get_functions(ndim, continuous=None, linear=None, convex=None, unimodal=None, separable=None, differentiable=None, scalable=None, randomized_term=None, parametric=None, modality=None): functions = [cls for classname, cls in FUNC_DATABASE if classname not in EXCLUDES] diff --git a/setup.py b/setup.py index b1f64a7..42feb38 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def readme(): setup( name="opfunu", - version="1.0.1", + version="1.0.2", author="Thieu", author_email="nguyenthieu2102@gmail.com", description="Opfunu: An Open-source Python Library for Optimization Benchmark Functions", @@ -52,6 +52,7 @@ def readme(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: System :: Benchmark", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics",