Skip to content

python311Packages.pytensor: 2.18.6 -> 2.20.0 #294574

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions pkgs/development/python-modules/pymc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,46 +3,48 @@
, buildPythonPackage
, cachetools
, cloudpickle
, fastprogress
, fetchFromGitHub
, numpy
, pandas
, pytensor
, pythonOlder
, rich
, scipy
, typing-extensions
, setuptools
, typing-extensions
}:

buildPythonPackage rec {
pname = "pymc";
version = "5.10.4";
version = "5.13.1";
pyproject = true;

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

src = fetchFromGitHub {
owner = "pymc-devs";
repo = "pymc";
rev = "refs/tags/v${version}";
hash = "sha256-tiOXbryY2TmeBVrG5cIMeDJ4alolBQ5LosdfH3tpVOA=";
hash = "sha256-SSAn7nbKhXGeEvASKQITUs3+ix3j37u9JTkNiG+1tZ0=";
};

build-system = [
setuptools
];

postPatch = ''
substituteInPlace setup.py \
--replace-fail ', "pytest-cov"' ""
'';

propagatedBuildInputs = [
build-system = [
setuptools
];

dependencies = [
arviz
cachetools
cloudpickle
fastprogress
numpy
pandas
pytensor
rich
scipy
typing-extensions
];
Expand Down
12 changes: 5 additions & 7 deletions pkgs/development/python-modules/pytensor/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,33 @@
, 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 = ''
substituteInPlace pyproject.toml \
--replace "versioneer[toml]==0.28" "versioneer[toml]"
'';

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

propagatedBuildInputs = [
dependencies = [
cons
etuples
filelock
Expand Down Expand Up @@ -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);
};
}