Skip to content
Snippets Groups Projects
Commit 8afcc88b authored by Dominique Benielli's avatar Dominique Benielli
Browse files

Update setup.py

parent cc4dfb49
No related branches found
Tags 0.0.0
No related merge requests found
Pipeline #12410 passed
......@@ -110,7 +110,7 @@ class clean(_clean):
clean.run(self)
if os.path.exists('build'):
shutil.rmtree('build')
for dirpath, dirnames, filenames in os.walk('iw'):
for dirpath, dirnames, filenames in os.walk('multimodal'):
for filename in filenames:
if (filename.endswith('.so') or
filename.endswith('.pyd') or
......@@ -175,7 +175,7 @@ def setup_package():
keywords = ['machine learning, supervised learning, classification, ' \
'ensemble methods, boosting, kernel']
packages = find_packages(exclude=['*.tests'])
install_requires = ['scikit-learn>=0.24.2', 'numpy', 'scipy', 'cvxopt' ]
install_requires = ['scikit-learn==1.2.1', 'numpy', 'scipy', 'cvxopt' ]
python_requires = '>=3.6'
extras_require = {
'dev': ['pytest', 'pytest-cov'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment