Open adelaneh opened 10 months ago
Interesting. I didn't see that one coming. Indeed, I am using 3.10 for development. I will add that requirement in the installation section. Thanks
This issue seems to be caused by the Matlab dependency matplotlib == 3.5.0. Something about PEP517. If you upgrade the dependency to 3.6.0 it works fine on 3.12.
This issue seems to be caused by the Matlab dependency matplotlib == 3.5.0. Something about PEP517. If you upgrade the dependency to 3.6.0 it works fine on 3.12.
I'm also having this issue, this seems like an easy fix. I'll check for my sys later today.
This issue seems to be caused by the Matlab dependency matplotlib == 3.5.0. Something about PEP517. If you upgrade the dependency to 3.6.0 it works fine on 3.12.
It still failed for me, but making every dependency a lower bound ended up working:
dependencies = [
"matplotlib >=3.6.0",
"derivative ~= 0.6.0",
"scikit-learn >= 1.1.3",
"numpy >=1.20",
"scipy >1.6.0",
"pydmd >0.4",
"optht ~= 0.2.0",
"prettytable >3.0.0",
"torch >= 2.1.0",
"torchvision >= 0.16.0",
"torchaudio >= 2.1.0",
"lightning >= 2.0.9",
]
Thanks. I fixed the issue with matplotlib >= 3.6.0
Fresh env. Tried both pypi and source installation: Got the following error:
Issue resolved when reverted to python 3.10