python312Packages.niapy: 2.3.1 -> 2.5.1 (#352133)

This commit is contained in:
Fabian Affolter 2024-10-30 09:41:57 +01:00 committed by GitHub
commit ec78e5d546
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
loguru,
niapy,
numpy,
pandas,
@ -10,6 +11,7 @@
pythonOlder,
scikit-learn,
toml-adapt,
typer,
}:
buildPythonPackage rec {
@ -34,10 +36,12 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
loguru
niapy
numpy
pandas
scikit-learn
typer
];
# create scikit-learn and niapy deps version consistent

View File

@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "niapy";
version = "2.3.1";
version = "2.5.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "NiaOrg";
repo = "NiaPy";
rev = "refs/tags/v${version}";
hash = "sha256-cT5CU1r3LZ9ValJwRUA0PaISmF6kXAz40alXbWYogGA=";
hash = "sha256-+5tXwubKdhkcv5NjO/DglK+WJfsJ3AzVx/Y/byDBmGo=";
};
build-system = [ poetry-core ];