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

chore(deps): bump optuna from 4.3.0 to 4.4.0

Closed
Number: #64
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: July 28, 2025 at 05:03 AM UTC
(11 months ago)
Updated: August 25, 2025 at 05:08 AM UTC
(10 months ago)
Closed: August 25, 2025 at 05:08 AM UTC
(10 months ago)
Time to Close: 28 days
Labels:
dependencies python
Description:

Bumps optuna from 4.3.0 to 4.4.0.

Release notes

Sourced from optuna's releases.

v4.4.0

This is the release note of v4.4.0.

Highlights

In addition to new features, bug fixes, and improvements in documentation and testing, version 4.4 introduces a new tool called the Optuna MCP Server.

Optuna MCP Server

The Optuna MCP server can be accessed by any MCP client via uv — for instance, with Claude Desktop, simply add the following configuration to your MCP server settings file. Of course, other LLM clients like VSCode or Cline can also be used similarly. You can also access it via Docker. If you want to persist the results, you can use the — storage option. For details, please refer to the repository.

{
  "mcpServers": {
    … (Other MCP Servers' settings)
    "Optuna": {
      "command": "uvx",
      "args": [
        "optuna-mcp"
      ]
    }
  }
}

image3

Gaussian Process-Based Multi-objective Optimization

Optuna’s GPSampler, introduced in version 3.6, offers superior speed and performance compared to existing Bayesian optimization frameworks, particularly when handling objective functions with discrete variables. In Optuna v4.4, we have extended this GPSampler to support multi-objective optimization problems. The applications of multi-objective optimization are broad, and the new multi-objective capabilities introduced in this GPSampler are expected to find applications in fields such as material design, experimental design problems, and high-cost hyperparameter optimization.

GPSampler can be easily integrated into your program and performs well against the existing BoTorchSampler. We encourage you to try it out with your multi-objective optimization problems.

sampler = optuna.samplers.GPSampler()
study = optuna.create_study(directions=["minimize", "minimize"], sampler=sampler)

image2

New Features in OptunaHub

During the development period of Optuna v4.4, several new features were also introduced to OptunaHub, the feature-sharing platform for Optuna:

| Vizier sampler performance |

... (truncated)

Commits
  • 0742587 Merge pull request #6148 from HideakiImamura/bump-version-4.4
  • becfc27 Bump up version number to v4.4.0
  • 5ccdf30 Merge pull request #6145 from c-bata/fix-blackdoc-checks
  • f32571d [hotfix] Add version constraint on blackdoc at reviewdog.yml
  • 9622bb8 [hotfix] Add version constraint on blackdoc
  • cad5190 Merge pull request #6143 from Shubham05122002/refactor-return-tuple-style-mod...
  • 42daf94 Refactor return statement style in optuna/storages/_rdb/models.py for consist...
  • b0f1482 Merge pull request #6141 from saishreyakumar/fix-return-tuple-test-trial
  • 6f528b9 Merge pull request #6139 from Prashantdhaka23/fix-return-tuple
  • 59559cf Merge upstream/master into fix-return-tuple-test-trial
  • 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:
optuna
Ecosystem:
pip
Version Change:
4.3.0 → 4.4.0
Update Type:
Minor
Technical Details
ID: 4209553
UUID: 2699155287
Node ID: PR_kwDOOw0Wwc6g4ddX
Host: GitHub
Repository: mooncitydev/https-github.com-freqtrade-freqtrade
Mergeable: Yes
Merge State: Unstable