Commit ad685bb6 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python311Packages.pytensor: 2.18.6 -> 2.20.0

parent 5bc228bd
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -19,21 +19,20 @@
, pytestCheckHook
, pythonOlder
, tensorflow-probability
, stdenv
}:

buildPythonPackage rec {
  pname = "pytensor";
  version = "2.18.6";
  version = "2.20.0";
  pyproject = true;

  disabled = pythonOlder "3.9";
  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "pymc-devs";
    repo = "pytensor";
    rev = "refs/tags/rel-${version}";
    hash = "sha256-SMh4wVZwmc87ztFn2OOI234VP3JzmxVMBkn7lYwVu6M=";
    hash = "sha256-bvkOMer+zYSsiU4a147eUEZjjUeTVpb9f/hepMZZ3sE=";
  };

  postPatch = ''
@@ -41,12 +40,12 @@ buildPythonPackage rec {
      --replace "versioneer[toml]==0.28" "versioneer[toml]"
  '';

  nativeBuildInputs = [
  build-system = [
    cython
    versioneer
  ];

  propagatedBuildInputs = [
  dependencies = [
    cons
    etuples
    filelock
@@ -98,6 +97,5 @@ buildPythonPackage rec {
    changelog = "https://github.com/pymc-devs/pytensor/releases";
    license = licenses.bsd3;
    maintainers = with maintainers; [ bcdarwin ferrine ];
    broken = (stdenv.isLinux && stdenv.isAarch64);
  };
}