Unverified Commit fa6d71b5 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

rerun: 0.24.0 -> 0.24.1 (#431844)

parents 939188a7 d1490075
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -34,13 +34,13 @@
}:
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "rerun";
  version = "0.24.0";
  version = "0.24.1";

  src = fetchFromGitHub {
    owner = "rerun-io";
    repo = "rerun";
    tag = finalAttrs.version;
    hash = "sha256-OMSLCS1j55MYsC3pv4qPQjqO9nRgGj+AUOlcyESFXek=";
    hash = "sha256-unPgvQcYhshdx5NGCl/pLh8UdJ9T6B8Fd0s8G1NSBmE=";
  };

  # The path in `build.rs` is wrong for some reason, so we patch it to make the passthru tests work
@@ -49,7 +49,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
      --replace-fail '"rerun_sdk/rerun_cli/rerun"' '"rerun_sdk/rerun"'
  '';

  cargoHash = "sha256-8XmOtB1U2SAOBchrpKMAv5I8mFvJniVVcmFPugtD4RI=";
  cargoHash = "sha256-zdq8djnmH8srSd9sml7t6wsbxpTaT3x5/7hkDRgelbg=";

  cargoBuildFlags = [ "--package rerun-cli" ];
  cargoTestFlags = [ "--package rerun-cli" ];
+0 −9
Original line number Diff line number Diff line
@@ -71,15 +71,6 @@ buildPythonPackage {
  inherit (rerun) addDlopenRunpaths addDlopenRunpathsPhase;
  postPhases = lib.optionals stdenv.hostPlatform.isLinux [ "addDlopenRunpathsPhase" ];

  disabledTests = [
    # numpy 2 incompatibility: AssertionError / IndexError
    # Issue: https://github.com/rerun-io/rerun/issues/9105
    # PR: https://github.com/rerun-io/rerun/pull/9109
    "test_any_value"
    "test_bad_any_value"
    "test_none_any_value"
  ];

  disabledTestPaths = [
    # "fixture 'benchmark' not found"
    "tests/python/log_benchmark/test_log_benchmark.py"