An open index of dependabot pull requests across open source projects.

chore(deps): bump cmaes from 0.11.1 to 0.12.0

Merged
Number: #66
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: July 28, 2025 at 05:05 AM UTC
(5 months ago)
Updated: July 28, 2025 at 06:42 AM UTC
(5 months ago)
Merged: July 28, 2025 at 06:42 AM UTC
(5 months ago)
by mooncitydev
Time to Close: about 2 hours
Labels:
dependencies python
Description:

Bumps cmaes from 0.11.1 to 0.12.0.

Release notes

Sourced from cmaes's releases.

v0.12.0

New Algorithms

CatCMA with Margin (GECCO2025) by @​ha-mano

CatCMA with Margin (CatCMAwM) is a method for mixed-variable optimization problems, simultaneously optimizing continuous, integer, and categorical variables. CatCMAwM extends CatCMA by introducing a novel integer handling mechanism, and supports arbitrary combinations of continuous, integer, and categorical variables in a unified framework.

CatCMAwM

import numpy as np
from cmaes import CatCMAwM

def SphereIntCOM(x, z, c): return sum(x * x) + sum(z * z) + len(c) - sum(c[:, 0])

def SphereInt(x, z): return sum(x * x) + sum(z * z)

def SphereCOM(x, c): return sum(x * x) + len(c) - sum(c[:, 0])

def f_cont_int_cat(): # [lower_bound, upper_bound] for each continuous variable X = [[-5, 5], [-5, 5]] # possible values for each integer variable Z = [[-1, 0, 1], [-2, -1, 0, 1, 2]] # number of categories for each categorical variable C = [3, 3]

optimizer = CatCMAwM(x_space=X, z_space=Z, c_space=C)

for generation in range(50):
solutions = []
for _ in range(optimizer.population_size):
sol = optimizer.ask()
value = SphereIntCOM(sol.x, sol.z, sol.c)
solutions.append((sol, value))
print(f"#{generation} {sol} evaluation: {value}")
optimizer.tell(solutions)

</tr></table>

... (truncated)

Commits
  • e4bbf18 Merge pull request #204 from c-bata/bump-to-v0.12.0
  • 61ea3f3 Merge pull request #206 from c-bata/update-supported-python-ver
  • 40d3fde Update supported Python versions
  • b61f62c Merge pull request #205 from CyberAgentAILab/update-readme-1
  • 7846157 Remove the image for warm starting cma-es
  • 8234df1 Change the order of CMA-ES variants
  • 51d0c00 Remove \<details> tags hiding variant algorithm descriptions
  • 1234130 Bump up the version to v0.12.0
  • d3590bc Merge pull request #196 from kento031/cmaes-sop
  • e992fb4 Merge branch 'main' into cmaes-sop
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
Commits:
1
Files Changed:
1
Additions:
+1
Deletions:
-1
Package Dependencies
Package:
cmaes
Ecosystem:
pip
Version Change:
0.11.1 → 0.12.0
Update Type:
Minor
Technical Details
ID: 4209697
UUID: 2699160683
Node ID: PR_kwDOOw0Wwc6g4exr
Host: GitHub
Repository: mooncitydev/https-github.com-freqtrade-freqtrade
Merge State: Unknown