python3Packages.optuna: 4.4.0 -> 4.5.0 (#437881)

This commit is contained in:
Pavol Rusnak
2025-08-28 15:10:27 +02:00
committed by GitHub
4 changed files with 22 additions and 7 deletions
@@ -53,6 +53,11 @@ buildPythonPackage {
filelock
];
disabledTests = [
# AssertionError: assert ''
"test_get_html"
];
passthru.updateScript = nix-update-script { };
meta = {
@@ -43,14 +43,14 @@
buildPythonPackage rec {
pname = "optuna";
version = "4.4.0";
version = "4.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "optuna";
repo = "optuna";
tag = "v${version}";
hash = "sha256-S9F9xni1cnmIbWu5n7BFvUCvQmBP3iBYS1ntg6vQ8ZQ=";
hash = "sha256-qaCOpqKRepm/a1Nh98PV6RcRkadLK5E429pn1zaWQDA=";
};
build-system = [
@@ -138,6 +138,8 @@ buildPythonPackage rec {
"test_visualizations_with_single_objectives"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "optuna" ];
meta = {
@@ -67,10 +67,14 @@ buildPythonPackage rec {
'"ffmpeg"' '"${lib.getExe ffmpeg}"'
'';
# > Checking runtime dependencies for whisperx-3.3.2-py3-none-any.whl
# > - faster-whisper==1.1.0 not satisfied by version 1.1.1
# This has been updated on main, so we expect this clause to be removed upon the next update.
pythonRelaxDeps = [ "faster-whisper" ];
pythonRelaxDeps = [
# > Checking runtime dependencies for whisperx-3.3.2-py3-none-any.whl
# > - faster-whisper==1.1.0 not satisfied by version 1.1.1
# This has been updated on main, so we expect this clause to be removed upon the next update.
"faster-whisper"
"ctranslate2"
];
# Import check fails due on `aarch64-linux` ONLY in the sandbox due to onnxruntime
# not finding its default logger, which then promptly segfaults.
+5 -1
View File
@@ -1801,7 +1801,11 @@ self: super: with self; {
bech32 = callPackage ../development/python-modules/bech32 { };
beetcamp = callPackage ../development/python-modules/beetcamp { };
beetcamp = callPackage ../development/python-modules/beetcamp {
beets = pkgs.beets.override {
python3Packages = self;
};
};
beewi-smartclim = callPackage ../development/python-modules/beewi-smartclim { };