You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unable to install Lightning Bolts using python3 -m pip install . I get the following error:
error in lightning-bolts setup command: 'extras_require' must be a dictionary whose values are strings or lists of strings containing valid project/version requirement specifiers.
I'm pretty sure it happened only after the Python package packaging was upgraded to 23.0.
Try to install Bolts: cd lightning-bolts && python3 -m pip install --editable .
It seems to be related to setuptools not accepting version requirements with an asterisk. I can also test it in a Python interpreter. After installing packaging==23.0, setuptools crashes if a version number such as 0.10.* is given:
🐛 Bug
I'm unable to install Lightning Bolts using
python3 -m pip install .
I get the following error:I'm pretty sure it happened only after the Python package
packaging
was upgraded to 23.0.To Reproduce
Steps to reproduce the behavior:
python3 -m pip install --upgrade packaging==23.0
git clone git@github.com:Lightning-AI/lightning-bolts.git
cd lightning-bolts && python3 -m pip install --editable .
It seems to be related to setuptools not accepting version requirements with an asterisk. I can also test it in a Python interpreter. After installing
packaging==23.0
, setuptools crashes if a version number such as0.10.*
is given:Environment
conda
,pip
, source): pipThe text was updated successfully, but these errors were encountered: