Merge pull request #317838 from GaetanLepage/ray

python311Packages.ray: 2.23.0 -> 2.24.0
This commit is contained in:
Peder Bergebakken Sundt 2024-06-07 09:37:53 +02:00 committed by GitHub
commit 34b3af17a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,8 @@
{ {
cp310 = { cp310 = {
hash = "sha256-VWEPjq5lzlaGvedaV4LOY+KgESzNImK4rNcHJk2m2+o="; hash = "sha256-e0B3uGc5Yp4BC8bQAaiQCaouH+qUxAjA7jB2f8DA6m0=";
}; };
cp311 = { cp311 = {
hash = "sha256-FcEJ/ZlpMmMjyL2wcBzZryHIX0ZQAvdJUGIvmlgOxOU="; hash = "sha256-cZX0rjCgfyGqAM99lFZI7WlotjyksCpb3H/DCFP0lBA=";
}; };
} }

View File

@ -53,7 +53,7 @@
let let
pname = "ray"; pname = "ray";
version = "2.23.0"; version = "2.24.0";
in in
buildPythonPackage rec { buildPythonPackage rec {
inherit pname version; inherit pname version;
@ -122,7 +122,7 @@ buildPythonPackage rec {
"virtualenv" "virtualenv"
]; ];
propagatedBuildInputs = [ dependencies = [
attrs attrs
aiohttp aiohttp
aiohttp-cors aiohttp-cors
@ -158,12 +158,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "ray" ]; pythonImportsCheck = [ "ray" ];
meta = with lib; { meta = {
description = "A unified framework for scaling AI and Python applications"; description = "A unified framework for scaling AI and Python applications";
homepage = "https://github.com/ray-project/ray"; homepage = "https://github.com/ray-project/ray";
changelog = "https://github.com/ray-project/ray/releases/tag/ray-${version}"; changelog = "https://github.com/ray-project/ray/releases/tag/ray-${version}";
license = licenses.asl20; license = lib.licenses.asl20;
maintainers = with maintainers; [ billhuang ]; maintainers = with lib.maintainers; [ billhuang ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };
} }