New package: py-dask-xgboost (#21583)
* New package: py-dask-xgboost * py-dask-xgboost: Fixed what was pointed out
This commit is contained in:
parent
f6b0f52fb2
commit
920a65a765
25
var/spack/repos/builtin/packages/py-dask-xgboost/package.py
Normal file
25
var/spack/repos/builtin/packages/py-dask-xgboost/package.py
Normal file
@ -0,0 +1,25 @@
|
||||
# Copyright 2013-2021 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)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class PyDaskXgboost(PythonPackage):
|
||||
"""Distributed training with XGBoost and Dask.distributed."""
|
||||
|
||||
homepage = "https://github.com/dask/dask-xgboost/"
|
||||
pypi = "dask-xgboost/dask-xgboost-0.1.11.tar.gz"
|
||||
|
||||
version('0.1.11', sha256='3fbe1bf4344dc74edfbe9f928c7e3e6acc26dc57cefd8da8ae56a15469c6941c')
|
||||
|
||||
variant('sparse', default=False, description='Add sparse support')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-xgboost@:0.90', type=('build', 'run'))
|
||||
depends_on('py-dask', type=('build', 'run'))
|
||||
depends_on('py-distributed@1.15.2:', type=('build', 'run'))
|
||||
|
||||
depends_on('py-sparse', type=('build', 'run'), when='+sparse')
|
||||
depends_on('py-scipy', type=('build', 'run'), when='+sparse')
|
Loading…
Reference in New Issue
Block a user