Will block with conflict:
mistralai 1.2.3 requires python-dateutil==2.8.2, but you'll have python-dateutil 2.9.0 which is incompatible.
Expected Behavior
The client should allow the version 2.9.0 of the python-dateutil.
If there is no reason to lock the version 2.8.2 then you should not strictly specify the version.
Additional Context
No response
Suggested Solutions
Use python-dateutil = "^2.8.2" in pyproject.toml instead of the strict 2.8.2 specification
Python -VV
Pip Freeze
Reproduction Steps
python-dateutil==2.9.0
mistralai==1.2.3
Will block with conflict:
mistralai 1.2.3 requires python-dateutil==2.8.2, but you'll have python-dateutil 2.9.0 which is incompatible.
Expected Behavior
The client should allow the version 2.9.0 of the
python-dateutil
. If there is no reason to lock the version2.8.2
then you should not strictly specify the version.Additional Context
No response
Suggested Solutions
Use
python-dateutil = "^2.8.2"
inpyproject.toml
instead of the strict2.8.2
specification