python311Packages.pytensor: 2.18.6 -> 2.20.0

Changelog: https://github.com/pymc-devs/pytensor/releases/tag/rel-2.20.0
This commit is contained in:
Gaetan Lepage
2024-04-30 11:18:59 +02:00
parent 5bc228bd92
commit ad685bb6b1
@@ -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);
};
}