-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python311Packages.{torch,torch-bin}: 2.3.0 -> 2.3.1 #317576
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thx!
Result of 72 packages marked as broken and skipped:
37 packages failed to build:
561 packages built:
|
Result of 224 packages marked as broken and skipped:
64 packages failed to build:
339 packages built:
|
Result of 200 packages marked as broken and skipped:
56 packages failed to build:
387 packages built:
|
Result of 196 packages marked as broken and skipped:
54 packages failed to build:
345 packages built:
|
Result of 204 packages marked as broken and skipped:
50 packages failed to build:
389 packages built:
|
Result of 72 packages marked as broken and skipped:
133 packages failed to build:
465 packages built:
|
export PR="317576" \
SYSTEM="x86_64-linux" \
NIXPKGS_ALLOW_ALIASES="false" \
NIXPKGS_ALLOW_BROKEN="false" \
NIXPKGS_ALLOW_UNFREE="true" \
NIXPKGS_CHECK_META="true" \
NIXPKGS_CUDA_SUPPORT="true" \
NIXPKGS_CUDA_CAPABILITIES="7.5" \
&& nixpkgs-review pr "${PR:?}" \
--system "${SYSTEM:?}" \
--no-shell \
--print-result \
--build-args "--show-trace --max-jobs 1" \
--build-graph nix \
--extra-nixpkgs-config "$(cat ./,nixpkgs-review-nixpkgs-config.nix)" Result of nixpkgs-review pr 317576 --extra-nixpkgs-config extra-nixpkgs-config{
allowAliases =
let
allowAliases = builtins.getEnv "NIXPKGS_ALLOW_ALIASES";
isTrue = allowAliases == "true";
in
if isTrue || allowAliases == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_ALIASES must be set to 'true' or 'false'";
allowBroken =
let
allowBroken = builtins.getEnv "NIXPKGS_ALLOW_BROKEN";
isTrue = allowBroken == "true";
in
if isTrue || allowBroken == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_BROKEN must be set to 'true' or 'false'";
allowUnfree =
let
allowUnfree = builtins.getEnv "NIXPKGS_ALLOW_UNFREE";
isTrue = allowUnfree == "true";
in
if isTrue || allowUnfree == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_UNFREE must be set to 'true' or 'false'";
checkMeta =
let
checkMeta = builtins.getEnv "NIXPKGS_CHECK_META";
isTrue = checkMeta == "true";
in
if isTrue || checkMeta == "false" then
isTrue
else
builtins.throw "NIXPKGS_CHECK_META must be set to 'true' or 'false'";
cudaSupport =
let
cudaSupport = builtins.getEnv "NIXPKGS_CUDA_SUPPORT";
isTrue = cudaSupport == "true";
in
if isTrue || cudaSupport == "false" then
isTrue
else
builtins.throw "NIXPKGS_CUDA_SUPPORT must be set to 'true' or 'false'";
cudaCapabilities =
let
# NIXPKGS_CUDA_CAPABILITIES must be a semi-colon separated list of capabilities (e.g., '7.5;8.0;9.0;9.0a')
rawCudaCapabilities = builtins.getEnv "NIXPKGS_CUDA_CAPABILITIES";
# Filter out the matches for the semi-colon, which are empty lists, keeping only the strings
cudaCapabilities = builtins.filter builtins.isString (builtins.split ";" rawCudaCapabilities);
in
if rawCudaCapabilities == "" then [ ] else cudaCapabilities;
packageOverrides =
pkgs:
let
inherit (pkgs.lib.attrsets) recursiveUpdate updateManyAttrsByPath;
inherit (pkgs.lib.lists) map;
inherit (pkgs.lib.trivial) pipe;
mkOverrides =
{
attrPaths,
overrideMsgFn ? (pkg: "${pkg.name}: setting meta.broken = true"),
overrideAttrsFnName ? "overrideAttrs",
overrideAttrsFnArgAttrSet ? ({ meta.broken = true; }),
}:
# Allows currying
packageSet:
let
updates = map (attrPath: {
path = attrPath;
update =
pkg:
let
# Must use builtins.abort to fully stop evaluation instead of throwing an exception, which eval will catch
overrideAttrsFn =
pkg.${overrideAttrsFnName}
or (builtins.abort "Package ${pkg.name} does not have the function ${overrideAttrsFnName} defined.");
overrideAttrsFnArg =
prevAttrs: builtins.trace (overrideMsgFn pkg) recursiveUpdate prevAttrs overrideAttrsFnArgAttrSet;
in
overrideAttrsFn overrideAttrsFnArg;
}) attrPaths;
in
updateManyAttrsByPath updates packageSet;
usesRequireFile = [
[ "airwave" ]
[ "alephone-apotheosis-x" ]
[ "andyetitmoves" ]
[ "ciscoPacketTracer7" ]
[ "ciscoPacketTracer8" ]
[ "citrix_workspace" ]
[ "citrix_workspace_23_11_0" ]
[ "citrix_workspace_23_09_0" ]
[ "citrix_workspace_24_02_0" ]
[ "d1x-rebirth-full" ]
[ "d2x-rebirth-full" ]
[ "displaylink" ]
[ "dxx-rebirth" ]
[ "everspace" ]
[ "houdini" ]
[ "iaca_2_1" ]
[ "iaca" ]
[ "ib-tws" ]
[ "ios-cross-compile" ]
[ "javacard-devkit" ]
[ "keeperrl" ]
[ "kinect-audio-setup" ]
[ "koboredux" ]
[ "lattice-diamond" ]
[ "liquidfun" ]
[ "mathematica-cuda" ]
[ "mathematica-webdoc-cuda" ]
[ "mathematica-webdoc" ]
[ "mathematica" ]
[ "mathematica10" ]
[ "mathematica11" ]
[ "mathematica9" ]
[ "oraclejdk" ]
[ "oraclejdk11" ]
[ "oraclejdk8" ]
[ "oraclejre" ]
[ "oraclejre8" ]
[ "pixinsight" ]
[ "planetary_annihilation" ]
[ "rcu" ]
[ "realvnc-vnc-viewer" ]
[ "sm64ex-coop" ]
[ "sm64ex" ]
[ "snapdragon-profiler" ]
[ "sqldeveloper" ]
[ "upwork" ]
[ "uqm" ]
[ "ut1999" ]
[ "vessel" ]
[ "wechat-uos" ]
[ "wolfram-engine" ]
[ "wonderdraft" ]
[ "worldofgoo" ]
[ "wtk" ]
];
brokenOnMaster = [
[ "actiona" ]
[
"libsForQt5"
"pix"
] # https://github.com/NixOS/nixpkgs/issues/317089
];
longCheckPhasePythonExtension =
_:
mkOverrides {
attrPaths = [
[ "apricot-select" ]
[ "botorch" ]
[ "gpytorch" ]
[ "linear-operator" ]
[ "pgmpy" ]
[ "tensordict" ]
];
overrideMsgFn = (pkg: "${pkg.name}: setting doCheck = false");
overrideAttrsFnName = "overridePythonAttrs";
overrideAttrsFnArgAttrSet.doCheck = false;
};
# Packages built with buildPythonPackage that are broken
brokenOnMasterPythonExtension =
_:
mkOverrides {
attrPaths = [
[ "fipy" ] # https://github.com/NixOS/nixpkgs/pull/317324
];
overrideMsgFn = (pkg: "${pkg.name}: setting meta.broken = true");
overrideAttrsFnName = "overridePythonAttrs";
overrideAttrsFnArgAttrSet.meta.broken = true;
};
# Packages built with toPythonModule that are broken (they don't have overridePythonAttrs)
brokenOnMasterPythonModuleExtension =
_:
mkOverrides {
attrPaths = [
[ "hoomd-blue" ] # https://github.com/NixOS/nixpkgs/issues/317307
];
overrideMsgFn = (pkg: "${pkg.name}: setting meta.broken = true");
overrideAttrsFnName = "overrideAttrs";
overrideAttrsFnArgAttrSet.meta.broken = true;
};
in
pipe pkgs [
(mkOverrides { attrPaths = usesRequireFile ++ brokenOnMaster; })
(updateManyAttrsByPath [
{
path = [ "pythonPackagesExtensions" ];
update =
pythonPackagesExtensions:
pythonPackagesExtensions
++ [
longCheckPhasePythonExtension
brokenOnMasterPythonExtension
brokenOnMasterPythonModuleExtension
];
}
])
];
} run on x86_64-linux 1 66 packages marked as broken and skipped:
45 packages failed to build:
585 packages built:
|
export PR="317576" \
SYSTEM="x86_64-linux" \
NIXPKGS_ALLOW_ALIASES="false" \
NIXPKGS_ALLOW_BROKEN="false" \
NIXPKGS_ALLOW_UNFREE="true" \
NIXPKGS_CHECK_META="true" \
NIXPKGS_CUDA_SUPPORT="false" \
NIXPKGS_CUDA_CAPABILITIES="" \
&& nixpkgs-review pr "${PR:?}" \
--system "${SYSTEM:?}" \
--no-shell \
--print-result \
--build-args "--show-trace --max-jobs 1" \
--build-graph nix \
--extra-nixpkgs-config "$(cat ./,nixpkgs-review-nixpkgs-config.nix)" Result of nixpkgs-review pr 317576 --extra-nixpkgs-config extra-nixpkgs-config{
allowAliases =
let
allowAliases = builtins.getEnv "NIXPKGS_ALLOW_ALIASES";
isTrue = allowAliases == "true";
in
if isTrue || allowAliases == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_ALIASES must be set to 'true' or 'false'";
allowBroken =
let
allowBroken = builtins.getEnv "NIXPKGS_ALLOW_BROKEN";
isTrue = allowBroken == "true";
in
if isTrue || allowBroken == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_BROKEN must be set to 'true' or 'false'";
allowUnfree =
let
allowUnfree = builtins.getEnv "NIXPKGS_ALLOW_UNFREE";
isTrue = allowUnfree == "true";
in
if isTrue || allowUnfree == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_UNFREE must be set to 'true' or 'false'";
checkMeta =
let
checkMeta = builtins.getEnv "NIXPKGS_CHECK_META";
isTrue = checkMeta == "true";
in
if isTrue || checkMeta == "false" then
isTrue
else
builtins.throw "NIXPKGS_CHECK_META must be set to 'true' or 'false'";
cudaSupport =
let
cudaSupport = builtins.getEnv "NIXPKGS_CUDA_SUPPORT";
isTrue = cudaSupport == "true";
in
if isTrue || cudaSupport == "false" then
isTrue
else
builtins.throw "NIXPKGS_CUDA_SUPPORT must be set to 'true' or 'false'";
cudaCapabilities =
let
# NIXPKGS_CUDA_CAPABILITIES must be a semi-colon separated list of capabilities (e.g., '7.5;8.0;9.0;9.0a')
rawCudaCapabilities = builtins.getEnv "NIXPKGS_CUDA_CAPABILITIES";
# Filter out the matches for the semi-colon, which are empty lists, keeping only the strings
cudaCapabilities = builtins.filter builtins.isString (builtins.split ";" rawCudaCapabilities);
in
if rawCudaCapabilities == "" then [ ] else cudaCapabilities;
packageOverrides =
pkgs:
let
inherit (pkgs.lib.attrsets) recursiveUpdate updateManyAttrsByPath;
inherit (pkgs.lib.lists) map;
inherit (pkgs.lib.trivial) pipe;
mkOverrides =
{
attrPaths,
overrideMsgFn ? (pkg: "${pkg.name}: setting meta.broken = true"),
overrideAttrsFnName ? "overrideAttrs",
overrideAttrsFnArgAttrSet ? ({ meta.broken = true; }),
}:
# Allows currying
packageSet:
let
updates = map (attrPath: {
path = attrPath;
update =
pkg:
let
# Must use builtins.abort to fully stop evaluation instead of throwing an exception, which eval will catch
overrideAttrsFn =
pkg.${overrideAttrsFnName}
or (builtins.abort "Package ${pkg.name} does not have the function ${overrideAttrsFnName} defined.");
overrideAttrsFnArg =
prevAttrs: builtins.trace (overrideMsgFn pkg) recursiveUpdate prevAttrs overrideAttrsFnArgAttrSet;
in
overrideAttrsFn overrideAttrsFnArg;
}) attrPaths;
in
updateManyAttrsByPath updates packageSet;
usesRequireFile = [
[ "airwave" ]
[ "alephone-apotheosis-x" ]
[ "andyetitmoves" ]
[ "ciscoPacketTracer7" ]
[ "ciscoPacketTracer8" ]
[ "citrix_workspace" ]
[ "citrix_workspace_23_11_0" ]
[ "citrix_workspace_23_09_0" ]
[ "citrix_workspace_24_02_0" ]
[ "d1x-rebirth-full" ]
[ "d2x-rebirth-full" ]
[ "displaylink" ]
[ "dxx-rebirth" ]
[ "everspace" ]
[ "houdini" ]
[ "iaca_2_1" ]
[ "iaca" ]
[ "ib-tws" ]
[ "ios-cross-compile" ]
[ "javacard-devkit" ]
[ "keeperrl" ]
[ "kinect-audio-setup" ]
[ "koboredux" ]
[ "lattice-diamond" ]
[ "liquidfun" ]
[ "mathematica-cuda" ]
[ "mathematica-webdoc-cuda" ]
[ "mathematica-webdoc" ]
[ "mathematica" ]
[ "mathematica10" ]
[ "mathematica11" ]
[ "mathematica9" ]
[ "oraclejdk" ]
[ "oraclejdk11" ]
[ "oraclejdk8" ]
[ "oraclejre" ]
[ "oraclejre8" ]
[ "pixinsight" ]
[ "planetary_annihilation" ]
[ "rcu" ]
[ "realvnc-vnc-viewer" ]
[ "sm64ex-coop" ]
[ "sm64ex" ]
[ "snapdragon-profiler" ]
[ "sqldeveloper" ]
[ "upwork" ]
[ "uqm" ]
[ "ut1999" ]
[ "vessel" ]
[ "wechat-uos" ]
[ "wolfram-engine" ]
[ "wonderdraft" ]
[ "worldofgoo" ]
[ "wtk" ]
];
brokenOnMaster = [
[ "actiona" ]
[
"libsForQt5"
"pix"
] # https://github.com/NixOS/nixpkgs/issues/317089
];
longCheckPhasePythonExtension =
_:
mkOverrides {
attrPaths = [
[ "apricot-select" ]
[ "botorch" ]
[ "gpytorch" ]
[ "linear-operator" ]
[ "pgmpy" ]
[ "tensordict" ]
];
overrideMsgFn = (pkg: "${pkg.name}: setting doCheck = false");
overrideAttrsFnName = "overridePythonAttrs";
overrideAttrsFnArgAttrSet.doCheck = false;
};
# Packages built with buildPythonPackage that are broken
brokenOnMasterPythonExtension =
_:
mkOverrides {
attrPaths = [
[ "fipy" ] # https://github.com/NixOS/nixpkgs/pull/317324
];
overrideMsgFn = (pkg: "${pkg.name}: setting meta.broken = true");
overrideAttrsFnName = "overridePythonAttrs";
overrideAttrsFnArgAttrSet.meta.broken = true;
};
# Packages built with toPythonModule that are broken (they don't have overridePythonAttrs)
brokenOnMasterPythonModuleExtension =
_:
mkOverrides {
attrPaths = [
[ "hoomd-blue" ] # https://github.com/NixOS/nixpkgs/issues/317307
];
overrideMsgFn = (pkg: "${pkg.name}: setting meta.broken = true");
overrideAttrsFnName = "overrideAttrs";
overrideAttrsFnArgAttrSet.meta.broken = true;
};
in
pipe pkgs [
(mkOverrides { attrPaths = usesRequireFile ++ brokenOnMaster; })
(updateManyAttrsByPath [
{
path = [ "pythonPackagesExtensions" ];
update =
pythonPackagesExtensions:
pythonPackagesExtensions
++ [
longCheckPhasePythonExtension
brokenOnMasterPythonExtension
brokenOnMasterPythonModuleExtension
];
}
])
];
} run on x86_64-linux 1 64 packages marked as broken and skipped:
23 packages failed to build:
610 packages built:
|
export PR="317576" \
SYSTEM="x86_64-linux" \
NIXPKGS_ALLOW_ALIASES="false" \
NIXPKGS_ALLOW_BROKEN="false" \
NIXPKGS_ALLOW_UNFREE="false" \
NIXPKGS_CHECK_META="true" \
NIXPKGS_CUDA_SUPPORT="false" \
NIXPKGS_CUDA_CAPABILITIES="" \
&& nixpkgs-review pr "${PR:?}" \
--system "${SYSTEM:?}" \
--no-shell \
--print-result \
--build-args "--show-trace --max-jobs 1" \
--build-graph nix \
--extra-nixpkgs-config "$(cat ./,nixpkgs-review-nixpkgs-config.nix)" Result of nixpkgs-review pr 317576 --extra-nixpkgs-config extra-nixpkgs-config{
allowAliases =
let
allowAliases = builtins.getEnv "NIXPKGS_ALLOW_ALIASES";
isTrue = allowAliases == "true";
in
if isTrue || allowAliases == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_ALIASES must be set to 'true' or 'false'";
allowBroken =
let
allowBroken = builtins.getEnv "NIXPKGS_ALLOW_BROKEN";
isTrue = allowBroken == "true";
in
if isTrue || allowBroken == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_BROKEN must be set to 'true' or 'false'";
allowUnfree =
let
allowUnfree = builtins.getEnv "NIXPKGS_ALLOW_UNFREE";
isTrue = allowUnfree == "true";
in
if isTrue || allowUnfree == "false" then
isTrue
else
builtins.throw "NIXPKGS_ALLOW_UNFREE must be set to 'true' or 'false'";
checkMeta =
let
checkMeta = builtins.getEnv "NIXPKGS_CHECK_META";
isTrue = checkMeta == "true";
in
if isTrue || checkMeta == "false" then
isTrue
else
builtins.throw "NIXPKGS_CHECK_META must be set to 'true' or 'false'";
cudaSupport =
let
cudaSupport = builtins.getEnv "NIXPKGS_CUDA_SUPPORT";
isTrue = cudaSupport == "true";
in
if isTrue || cudaSupport == "false" then
isTrue
else
builtins.throw "NIXPKGS_CUDA_SUPPORT must be set to 'true' or 'false'";
cudaCapabilities =
let
# NIXPKGS_CUDA_CAPABILITIES must be a semi-colon separated list of capabilities (e.g., '7.5;8.0;9.0;9.0a')
rawCudaCapabilities = builtins.getEnv "NIXPKGS_CUDA_CAPABILITIES";
# Filter out the matches for the semi-colon, which are empty lists, keeping only the strings
cudaCapabilities = builtins.filter builtins.isString (builtins.split ";" rawCudaCapabilities);
in
if rawCudaCapabilities == "" then [ ] else cudaCapabilities;
packageOverrides =
pkgs:
let
inherit (pkgs.lib.attrsets) recursiveUpdate updateManyAttrsByPath;
inherit (pkgs.lib.lists) map;
inherit (pkgs.lib.trivial) pipe;
mkOverrides =
{
attrPaths,
overrideMsgFn ? (pkg: "${pkg.name}: setting meta.broken = true"),
overrideAttrsFnName ? "overrideAttrs",
overrideAttrsFnArgAttrSet ? ({ meta.broken = true; }),
}:
# Allows currying
packageSet:
let
updates = map (attrPath: {
path = attrPath;
update =
pkg:
let
# Must use builtins.abort to fully stop evaluation instead of throwing an exception, which eval will catch
overrideAttrsFn =
pkg.${overrideAttrsFnName}
or (builtins.abort "Package ${pkg.name} does not have the function ${overrideAttrsFnName} defined.");
overrideAttrsFnArg =
prevAttrs: builtins.trace (overrideMsgFn pkg) recursiveUpdate prevAttrs overrideAttrsFnArgAttrSet;
in
overrideAttrsFn overrideAttrsFnArg;
}) attrPaths;
in
updateManyAttrsByPath updates packageSet;
usesRequireFile = [
[ "airwave" ]
[ "alephone-apotheosis-x" ]
[ "andyetitmoves" ]
[ "ciscoPacketTracer7" ]
[ "ciscoPacketTracer8" ]
[ "citrix_workspace" ]
[ "citrix_workspace_23_11_0" ]
[ "citrix_workspace_23_09_0" ]
[ "citrix_workspace_24_02_0" ]
[ "d1x-rebirth-full" ]
[ "d2x-rebirth-full" ]
[ "displaylink" ]
[ "dxx-rebirth" ]
[ "everspace" ]
[ "houdini" ]
[ "iaca_2_1" ]
[ "iaca" ]
[ "ib-tws" ]
[ "ios-cross-compile" ]
[ "javacard-devkit" ]
[ "keeperrl" ]
[ "kinect-audio-setup" ]
[ "koboredux" ]
[ "lattice-diamond" ]
[ "liquidfun" ]
[ "mathematica-cuda" ]
[ "mathematica-webdoc-cuda" ]
[ "mathematica-webdoc" ]
[ "mathematica" ]
[ "mathematica10" ]
[ "mathematica11" ]
[ "mathematica9" ]
[ "oraclejdk" ]
[ "oraclejdk11" ]
[ "oraclejdk8" ]
[ "oraclejre" ]
[ "oraclejre8" ]
[ "pixinsight" ]
[ "planetary_annihilation" ]
[ "rcu" ]
[ "realvnc-vnc-viewer" ]
[ "sm64ex-coop" ]
[ "sm64ex" ]
[ "snapdragon-profiler" ]
[ "sqldeveloper" ]
[ "upwork" ]
[ "uqm" ]
[ "ut1999" ]
[ "vessel" ]
[ "wechat-uos" ]
[ "wolfram-engine" ]
[ "wonderdraft" ]
[ "worldofgoo" ]
[ "wtk" ]
];
brokenOnMaster = [
[ "actiona" ]
[
"libsForQt5"
"pix"
] # https://github.com/NixOS/nixpkgs/issues/317089
];
longCheckPhasePythonExtension =
_:
mkOverrides {
attrPaths = [
[ "apricot-select" ]
[ "botorch" ]
[ "gpytorch" ]
[ "linear-operator" ]
[ "pgmpy" ]
[ "tensordict" ]
];
overrideMsgFn = (pkg: "${pkg.name}: setting doCheck = false");
overrideAttrsFnName = "overridePythonAttrs";
overrideAttrsFnArgAttrSet.doCheck = false;
};
# Packages built with buildPythonPackage that are broken
brokenOnMasterPythonExtension =
_:
mkOverrides {
attrPaths = [
[ "fipy" ] # https://github.com/NixOS/nixpkgs/pull/317324
];
overrideMsgFn = (pkg: "${pkg.name}: setting meta.broken = true");
overrideAttrsFnName = "overridePythonAttrs";
overrideAttrsFnArgAttrSet.meta.broken = true;
};
# Packages built with toPythonModule that are broken (they don't have overridePythonAttrs)
brokenOnMasterPythonModuleExtension =
_:
mkOverrides {
attrPaths = [
[ "hoomd-blue" ] # https://github.com/NixOS/nixpkgs/issues/317307
];
overrideMsgFn = (pkg: "${pkg.name}: setting meta.broken = true");
overrideAttrsFnName = "overrideAttrs";
overrideAttrsFnArgAttrSet.meta.broken = true;
};
in
pipe pkgs [
(mkOverrides { attrPaths = usesRequireFile ++ brokenOnMaster; })
(updateManyAttrsByPath [
{
path = [ "pythonPackagesExtensions" ];
update =
pythonPackagesExtensions:
pythonPackagesExtensions
++ [
longCheckPhasePythonExtension
brokenOnMasterPythonExtension
brokenOnMasterPythonModuleExtension
];
}
])
];
} run on x86_64-linux 1 89 packages marked as broken and skipped:
21 packages failed to build:
587 packages built:
|
Result of 72 packages marked as broken and skipped:
33 packages failed to build:
565 packages built:
|
Ready for merge when the last eval check finishes (which I see as https://github.com/NixOS/nixpkgs/pull/317576/checks?check_run_id=25995401946). |
Let's hope it doesn't last for days... |
Result of 75 packages marked as broken and skipped:
8 packages failed to build:
618 packages built:
|
Ready for merge now? |
I was waiting for the |
Thank you very much! |
Result of 196 packages marked as broken and skipped:
50 packages failed to build:
349 packages built:
|
Result of 188 packages marked as broken and skipped:
46 packages failed to build:
397 packages built:
|
Description of changes
Update the torch ecosystem:
torch[-bin]
: 2.3.0 -> 2.3.1 https://github.com/pytorch/pytorch/releases/tag/v2.3.1cc @teh @thoughtpolice @tscholak
cc @junjihashimoto
torchaudio[-bin]
: 2.3.0 -> 2.3.1 https://github.com/pytorch/audio/releases/tag/v2.3.1cc @junjihashimoto
torchvision[-bin]
: 0.18.0 -> 0.18.1 https://github.com/pytorch/vision/releases/tag/v0.18.1cc @ericsagnes
cc @junjihashimoto
Things done
nix.conf
? (See Nix manual)sandbox = relaxed
sandbox = true
nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD"
. Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/
)Add a 👍 reaction to pull requests you find important.