python310Packages.pymanopt 2.1.1 -> 2.2.0 https://repology.org/project/python:pymanopt/versions attrpath: python310Packages.pymanopt Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fmk71b9jggba4jcs5h746m45wmrz16ij-packages.json.drv building '/nix/store/fmk71b9jggba4jcs5h746m45wmrz16ij-packages.json.drv'... Going to be running update for following packages: - python3.10-pymanopt-2.1.1 Press Enter key to continue... Running update for: - python3.10-pymanopt-2.1.1: UPDATING ... - python3.10-pymanopt-2.1.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pymanopt/default.nix b/pkgs/development/python-modules/pymanopt/default.nix index 0ade36294d96..d6fbdacf4650 100644 --- a/pkgs/development/python-modules/pymanopt/default.nix +++ b/pkgs/development/python-modules/pymanopt/default.nix @@ -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 ]; No auto update branch exists Old version 2.1.1" not present in staging derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage , numpy , scipy , torch , autograd , matplotlib , pytestCheckHook }: buildPythonPackage rec { pname = "pymanopt"; version = "2.2.0"; format = "setuptools"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-pDFRYhswcuAHG9pcqvzXIy3Ivhxe5R5Ric7AFRh7MK4="; }; propagatedBuildInputs = [ numpy scipy torch ]; nativeCheckInputs = [ autograd matplotlib pytestCheckHook ]; preCheck = '' substituteInPlace "tests/conftest.py" \ --replace "import tensorflow as tf" "" substituteInPlace "tests/conftest.py" \ --replace "tf.random.set_seed(seed)" "" ''; disabledTestPaths = [ "tests/test_examples.py" "tests/backends/test_tensorflow.py" "tests/test_problem.py" ]; pythonImportsCheck = [ "pymanopt" ]; meta = { description = "Python toolbox for optimization on Riemannian manifolds with support for automatic differentiation"; homepage = "https://www.pymanopt.org/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ yl3dy ]; broken = lib.versionAtLeast scipy.version "1.10.0"; }; }