Skip to content

Commit

Permalink
joblib moved from "install_requires" to "extras_require".
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitSolomonPrinceton committed Feb 20, 2024
1 parent 206d88d commit b9b2991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def build_extension(self, ext):
super().build_extension(ext)


extras_require = {'dev': ['pytest>=6', 'torch', 'numdifftools', 'pre-commit']}
extras_require = {'dev': ['pytest>=6', 'torch', 'numdifftools', 'pre-commit', 'joblib']}

algebra = os.environ.get('OSQP_ALGEBRA_BACKEND', 'builtin')
assert algebra in ('builtin', 'mkl', 'cuda'), f'Unknown algebra {algebra}'
Expand All @@ -166,7 +166,7 @@ def build_extension(self, ext):
package_data={'osqp.codegen.pywrapper': ['*.jinja']},
include_package_data=True,
zip_safe=False,
install_requires=['numpy>=1.7', 'scipy==1.10.1', 'qdldl', 'jinja2', 'joblib'],
install_requires=['numpy>=1.7', 'scipy==1.10.1', 'qdldl', 'jinja2'],
python_requires='>=3.7',
extras_require=extras_require,
license='Apache 2.0',
Expand Down

0 comments on commit b9b2991

Please sign in to comment.