python310Packages.lightning-utilities: 0.7.1 -> 0.8.0

https://github.com/Lightning-AI/utilities/releases/tag/v0.8.0
This commit is contained in:
Martin Weinelt 2023-03-18 11:43:09 +01:00
parent 3e1d10de43
commit 96585d3332
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "lightning-utilities";
version = "0.7.1";
version = "0.8.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "Lightning-AI";
repo = "utilities";
rev = "refs/tags/v${version}";
hash = "sha256-xjE5FsU1d/YcVHlfjtZE0T2LjGvsIOzbGJFU7PMDqdc=";
hash = "sha256-uwmX+/SK2zBkZQbN/t/DZ3i+XbdAJ/RM+Q649QwMUz0=";
};
nativeBuildInputs = [
@ -57,7 +57,13 @@ buildPythonPackage rec {
disabledTestPaths = [
"docs"
# doctests that expect docs.txt in the wrong location
"src/lightning_utilities/install/requirements.py"
];
pytestFlagsArray = [
# warns about distutils removal in python 3.12
"-W" "ignore::DeprecationWarning"
];
meta = with lib; {