summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-10-05 08:44:51 -0500
committerGitHub <noreply@github.com>2020-10-05 15:44:51 +0200
commitcb7a1ac2bfed721e1f3273d4541f0f4df77fa1b6 (patch)
tree1bc2f8ff1aa342c264c702c256353bcf740f16f9
parenta9c6964a1d80cf0167de17b55729a64e4fd36d8c (diff)
downloadspack-cb7a1ac2bfed721e1f3273d4541f0f4df77fa1b6.tar.gz
spack-cb7a1ac2bfed721e1f3273d4541f0f4df77fa1b6.tar.bz2
spack-cb7a1ac2bfed721e1f3273d4541f0f4df77fa1b6.tar.xz
spack-cb7a1ac2bfed721e1f3273d4541f0f4df77fa1b6.zip
py-ray: added new package at v0.8.7 (#19006)
-rw-r--r--var/spack/repos/builtin/packages/py-ray/package.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ray/package.py b/var/spack/repos/builtin/packages/py-ray/package.py
new file mode 100644
index 0000000000..8d7b1c2769
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-ray/package.py
@@ -0,0 +1,41 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+
+class PyRay(PythonPackage):
+ """A system for parallel and distributed Python that unifies the ML
+ ecosystem."""
+
+ homepage = "https://github.com/ray-project/ray"
+ url = "https://github.com/ray-project/ray/archive/ray-0.8.7.tar.gz"
+
+ version('0.8.7', sha256='2df328f1bcd3eeb4fa33119142ea0d669396f4ab2a3e78db90178757aa61534b')
+
+ build_directory = 'python'
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('bazel@3.2.0:', type='build')
+ depends_on('py-setuptools', type='build')
+ depends_on('py-cython@0.29.14:', type='build')
+ depends_on('py-wheel', type='build')
+ depends_on('py-aiohttp', type=('build', 'run'))
+ depends_on('py-aioredis', type=('build', 'run'))
+ depends_on('py-click@7.0:', type=('build', 'run'))
+ depends_on('py-colorama', type=('build', 'run'))
+ depends_on('py-colorful', type=('build', 'run'))
+ depends_on('py-filelock', type=('build', 'run'))
+ depends_on('py-google', type=('build', 'run'))
+ depends_on('py-gpustat', type=('build', 'run'))
+ depends_on('py-grpcio@1.28.1:', type=('build', 'run'))
+ depends_on('py-jsonschema', type=('build', 'run'))
+ depends_on('py-msgpack@1.0:1.999', type=('build', 'run'))
+ depends_on('py-numpy@1.16:', type=('build', 'run'))
+ depends_on('py-protobuf@3.8.0:', type=('build', 'run'))
+ depends_on('py-py-spy@0.2.0:', type=('build', 'run'))
+ depends_on('py-pyyaml', type=('build', 'run'))
+ depends_on('py-requests', type=('build', 'run'))
+ depends_on('py-redis@3.3.2:3.4', type=('build', 'run'))
+ depends_on('py-opencensus', type=('build', 'run'))
+ depends_on('py-prometheus-client@0.7.1:', type=('build', 'run'))