On Tue, 2024-05-07 at 11:41 +0200, Gael Varoquaux wrote: > On Tue, May 07, 2024 at 11:31:02AM +0200, Ralf Gommers wrote: > > make `pip install scikit-image==0.22` work if that version of > > scikit-image depends on an unconstrained numpy version. > > Would an option be for the scikit-image maintainers to release a > version of scikit-image 0.22 (like 0.22.1) with a constraint numpy > version?
I don't think it helps, pip will just skip that version and pick the prevous one. IIUC, the one thing you could do is release a new version without a constraint that raises a detailed/informative error message at runtime. I.e. "work around" pip by telling users exactly what they should do. - Sebastian > > Gaël > _______________________________________________ > NumPy-Discussion mailing list -- [email protected] > To unsubscribe send an email to [email protected] > https://mail.python.org/mailman3/lists/numpy-discussion.python.org/ > Member address: [email protected] > _______________________________________________ NumPy-Discussion mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/numpy-discussion.python.org/ Member address: [email protected]
