Unverified Commit 4f855d3f authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.firedrake: 2025.4.1->2025.4.2 (#422129)

parents f403eddb 5535684e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -57,21 +57,21 @@ let
in
buildPythonPackage rec {
  pname = "firedrake";
  version = "2025.4.1";
  version = "2025.4.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "firedrakeproject";
    repo = "firedrake";
    tag = version;
    hash = "sha256-p/yquIKWynGY7UESDNBCf1cM8zpy8beuuRxSrSMvj7c=";
    hash = "sha256-bAGmXoHPAdMYJMMQYVq98LYro1Vd+o9pfvXC3BsQUf0=";
  };

  postPatch =
    # relax build-dependency petsc4py
    ''
      substituteInPlace pyproject.toml --replace-fail \
        "petsc4py==3.23.3" "petsc4py"
        "petsc4py==3.23.4" "petsc4py"
    ''
    + lib.optionalString stdenv.hostPlatform.isLinux ''
      substituteInPlace firedrake/petsc.py --replace-fail \
+2 −2
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "pyadjoint-ad";
  version = "2025.04.0";
  version = "2025.04.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "dolfin-adjoint";
    repo = "pyadjoint";
    tag = version;
    hash = "sha256-ZNd8aJJ87OfQakScrkYqhCAh7qGctW/uqIoQjX5VEhI=";
    hash = "sha256-S9A0qCatnnLuOkqWsEC4tjVY1HZqqi2T5iXu+WUoN24=";
  };

  build-system = [