File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
development/python-modules/rerun-sdk Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 3535
3636rustPlatform . 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
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments