python3Packages.pymanopt: 2.1.1 -> 2.2.0

This commit is contained in:
Martin Weinelt 2023-09-15 14:06:49 +02:00
parent 35d45751d3
commit 89055a635c

View file

@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "pymanopt";
version = "2.1.1";
version = "2.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-nbSxqMmYWi71s74bbB9LAlPKEslTqG/j266cLfNHrwg=";
hash = "sha256-pDFRYhswcuAHG9pcqvzXIy3Ivhxe5R5Ric7AFRh7MK4=";
};
propagatedBuildInputs = [ numpy scipy torch ];