Closed sfluegel05 closed 3 months ago
Most of our dependencies do not have a version specification. This leads to problems when new users try to install chebai. I made the following changes:
<3.11.8
>=3.9, <3.12
3.11
3.11.9
3.8
error: Parser key "data": 'type' object is not subscriptable
<2
lightning<=2.1
Most of our dependencies do not have a version specification. This leads to problems when new users try to install chebai. I made the following changes:
<3.11.8
(see https://github.com/ChEB-AI/python-chebai/commit/c8252b5f61d1f3b308cd0d6148b7303974cc2157), now it is set to>=3.9, <3.12
since the last3.11
version,3.11.9
is working fine, but version3.8
leads to the errorerror: Parser key "data": 'type' object is not subscriptable
during command parsing<2
since version 2 is not yet supported by all dependencies (version 2 of numpy has been released in June 2024)lightning<=2.1
to avoid the hyperparameter conflict mentioned here: https://github.com/ChEB-AI/python-chebai/pull/39#issuecomment-2266265256 (-> #43 )