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
setup.cfg contains matplotlib-base >=3.4
which prevents the installation of master.zip via pip, since base is not available via pip:
CBM8032% pip install https://github.com/odlgroup/odl/archive/master.zip
Collecting https://github.com/odlgroup/odl/archive/master.zip
Using cached https://github.com/odlgroup/odl/archive/master.zip
Preparing metadata (setup.py) ... done
ERROR: Could not find a version that satisfies the requirement matplotlib-base>=3.4 (from odl) (from versions: none)
ERROR: No matching distribution found for matplotlib-base>=3.4
Simply changing matplotlib-base to matplotlib solves the problem. Seems that the package is never called.
The text was updated successfully, but these errors were encountered:
Thanks for the report. I need to update the PyPI release so installation with pip is smooth again.
As you noticed many things can be done without matplotlib, but there is binding code that requires it, that's why we depend on the lightweight matplotlib-base. With Conda this installs just fine and ensures compatibility, but indeed it might make sense to just omit it for PyPI.
setup.cfg contains
matplotlib-base >=3.4
which prevents the installation of master.zip via pip, since base is not available via pip:
Simply changing matplotlib-base to matplotlib solves the problem. Seems that the package is never called.
The text was updated successfully, but these errors were encountered: