Skip to content

Commit b212296

Browse files
authored
rerun: 0.21.0 -> 0.22.1 (#379876)
2 parents a94b69f + 4843b88 commit b212296

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

pkgs/by-name/re/rerun/package.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535

3636
rustPlatform.buildRustPackage rec {
3737
pname = "rerun";
38-
version = "0.21.0";
38+
version = "0.22.1";
3939

4040
src = fetchFromGitHub {
4141
owner = "rerun-io";
4242
repo = "rerun";
4343
tag = version;
44-
hash = "sha256-U+Q8u1XKBD9c49eXAgc5vASKytgyAEYyYv8XNfftlZU=";
44+
hash = "sha256-J9Iy/KiDajDavL95qLcQBfUWpZ6OiUtldk+ZAGpSNWA=";
4545
};
4646

4747
# The path in `build.rs` is wrong for some reason, so we patch it to make the passthru tests work
@@ -51,7 +51,7 @@ rustPlatform.buildRustPackage rec {
5151
'';
5252

5353
useFetchCargoVendor = true;
54-
cargoHash = "sha256-IHsHvr50rhS4CH+27613OVBFC2oI37xvhKLjZY36oo8=";
54+
cargoHash = "sha256-cGg8yi/jYKyle8dudHSNLPMnOtcgqlBQmu83h4B26NI=";
5555

5656
cargoBuildFlags = [ "--package rerun-cli" ];
5757
cargoTestFlags = [ "--package rerun-cli" ];
@@ -153,7 +153,7 @@ rustPlatform.buildRustPackage rec {
153153
meta = {
154154
description = "Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui";
155155
homepage = "https://github.com/rerun-io/rerun";
156-
changelog = "https://github.com/rerun-io/rerun/blob/${src.tag}/CHANGELOG.md";
156+
changelog = "https://github.com/rerun-io/rerun/blob/${version}/CHANGELOG.md";
157157
license = with lib.licenses; [
158158
asl20
159159
mit

pkgs/development/python-modules/rerun-sdk/default.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,15 @@ buildPythonPackage {
7171
inherit (rerun) addDlopenRunpaths addDlopenRunpathsPhase;
7272
postPhases = lib.optionals stdenv.hostPlatform.isLinux [ "addDlopenRunpathsPhase" ];
7373

74+
disabledTests = [
75+
# numpy 2 incompatibility: AssertionError / IndexError
76+
# Issue: https://github.com/rerun-io/rerun/issues/9105
77+
# PR: https://github.com/rerun-io/rerun/pull/9109
78+
"test_any_value"
79+
"test_bad_any_value"
80+
"test_none_any_value"
81+
];
82+
7483
disabledTestPaths = [
7584
# "fixture 'benchmark' not found"
7685
"tests/python/log_benchmark/test_log_benchmark.py"

0 commit comments

Comments
 (0)