Now the requirement is pandas~=1.0 which is already a problem on python 3.12 (there are no wheels for pandas==1.5.3).
Changing to pandas>=1.0, or pandas~=2.0 would solve it.
That's a good point. I don't think the pandas API relevant to cobrapy has changed at all. So hopefully just changing the version modifier should be enough.
Now the requirement is
pandas~=1.0
which is already a problem on python 3.12 (there are no wheels forpandas==1.5.3
). Changing topandas>=1.0
, orpandas~=2.0
would solve it.