forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add latest version of py-scikit-learn (spack#13295)
* Add latest version of py-scikit-learn * setup_environment -> setup_build_environment
- Loading branch information
1 parent
79c8435
commit 28074a2
Showing
1 changed file
with
19 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ class PyScikitLearn(PythonPackage): | |
"""A set of python modules for machine learning and data mining.""" | ||
|
||
homepage = "https://pypi.python.org/pypi/scikit-learn" | ||
url = "https://pypi.io/packages/source/s/scikit-learn/scikit-learn-0.21.2.tar.gz" | ||
url = "https://pypi.io/packages/source/s/scikit-learn/scikit-learn-0.21.3.tar.gz" | ||
git = "https://github.com/scikit-learn/scikit-learn.git" | ||
|
||
maintainers = ['adamjstewart'] | ||
|
@@ -33,6 +33,7 @@ class PyScikitLearn(PythonPackage): | |
] | ||
|
||
version('master', branch='master') | ||
version('0.21.3', sha256='eb9b8ebf59eddd8b96366428238ab27d05a19e89c5516ce294abc35cea75d003') | ||
version('0.21.2', sha256='0aafc312a55ebf58073151b9308761a5fcfa45b7f7730cea4b1f066f824c72db') | ||
version('0.21.1', sha256='228d0611e69e5250946f8cd7bbefec75347950f0ca426d0c518db8f06583f660') | ||
version('0.20.2', sha256='bc5bc7c7ee2572a1edcb51698a6caf11fae554194aaab9a38105d9ec419f29e6') | ||
|
@@ -46,18 +47,18 @@ class PyScikitLearn(PythonPackage): | |
|
||
variant('openmp', default=True, description='Build with OpenMP support') | ||
|
||
depends_on('[email protected]:2.8,3.3:', when='@:0.19') | ||
depends_on('[email protected]:2.8,3.4:', when='@0.20.0:0.20.999') | ||
depends_on('[email protected]:', when='@0.21:') | ||
depends_on('[email protected]:', type=('build', 'run'), when='@:0.19') | ||
depends_on('[email protected]:', type=('build', 'run'), when='@0.20.0:0.20.999') | ||
depends_on('[email protected]:', type=('build', 'run'), when='@0.21:') | ||
depends_on('[email protected]:', type=('build', 'run'), when='@:0.19') | ||
depends_on('[email protected]:', type=('build', 'run'), when='@0.20.0:0.20.999') | ||
depends_on('[email protected]:', type=('build', 'run'), when='@0.21:') | ||
depends_on('[email protected]:2.8,3.3:', when='@:0.19', type=('build', 'run')) | ||
depends_on('[email protected]:2.8,3.4:', when='@0.20.0:0.20.999', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@0.21:', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@:0.19', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@0.20.0:0.20.999', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@0.21:', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@:0.19', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@0.20.0:0.20.999', type=('build', 'run')) | ||
depends_on('[email protected]:', when='@0.21:', type=('build', 'run')) | ||
depends_on('[email protected]:', type=('build', 'run')) | ||
depends_on('[email protected]:', type='build') | ||
depends_on('[email protected]:', type='build', when='@0.21:') | ||
depends_on('[email protected]:', when='@0.21:', type='build') | ||
depends_on('[email protected]:', type='test') | ||
depends_on('py-pandas', type='test') | ||
depends_on('py-setuptools', type='build') | ||
|
@@ -71,34 +72,20 @@ class PyScikitLearn(PythonPackage): | |
# See https://github.com/scikit-learn/scikit-learn/issues/14332 | ||
conflicts('~openmp', when='@:999', msg='Only master supports ~openmp') | ||
|
||
def setup_environment(self, spack_env, run_env): | ||
def setup_build_environment(self, env): | ||
# https://scikit-learn.org/stable/developers/advanced_installation.html#building-from-source | ||
if self.spec.satisfies('~openmp'): | ||
spack_env.set('SKLEARN_NO_OPENMP', 'True') | ||
env.set('SKLEARN_NO_OPENMP', 'True') | ||
# https://scikit-learn.org/stable/developers/advanced_installation.html#mac-osx | ||
elif self.spec.satisfies('@0.21: %clang platform=darwin +openmp'): | ||
spack_env.append_flags( | ||
env.append_flags( | ||
'CPPFLAGS', '-Xpreprocessor -fopenmp') | ||
spack_env.append_flags( | ||
env.append_flags( | ||
'CFLAGS', self.spec['llvm-openmp'].headers.include_flags) | ||
spack_env.append_flags( | ||
'CXXFLAGS', | ||
self.spec['llvm-openmp'].headers.include_flags) | ||
spack_env.append_flags( | ||
env.append_flags( | ||
'CXXFLAGS', self.spec['llvm-openmp'].headers.include_flags) | ||
env.append_flags( | ||
'LDFLAGS', self.spec['llvm-openmp'].libs.ld_flags) | ||
spack_env.append_flags( | ||
'DYLD_LIBRARY_PATH', | ||
self.spec['llvm-openmp'].libs.directories[0]) | ||
|
||
run_env.append_flags( | ||
'DYLD_LIBRARY_PATH', | ||
self.spec['llvm-openmp'].libs.directories[0]) | ||
|
||
def setup_dependent_environment(self, spack_env, run_env, dependent_spec): | ||
if self.spec.satisfies('@0.21: %clang platform=darwin +openmp'): | ||
spack_env.append_flags( | ||
'DYLD_LIBRARY_PATH', | ||
self.spec['llvm-openmp'].libs.directories[0]) | ||
|
||
def install_test(self): | ||
# https://scikit-learn.org/stable/developers/advanced_installation.html#testing | ||
|