DFKI-NI / mobipick_labs

Other
4 stars 1 forks source link

Different UP versions in ESB and install deps script #48

Closed oscar-lima closed 5 months ago

oscar-lima commented 5 months ago

install deps script line 19 installs ESB version 0.1.0 which installs unified-planning version 1.0.0, however install deps script line 21 installs unified-planning version 1.1.0, which results in the following error in the terminal:

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
up-esb 0.1.0 requires unified-planning==1.0.0, but you have unified-planning 1.1.0 which is incompatible.

Which UP version do we want to have?

alexander-sung commented 5 months ago

Probably @sebastianstock can answer this better.

mintar commented 5 months ago

The correct version that you want is 1.1.0, and we get the same error message as you. Everything should work correctly with unified-planning 1.1.0, so don't be disturbed by the error message.

To fix this (i.e., to make the error message go away), the authors of up-esb should relax their requirements a little (e.g., require unified-planning>=1.0.0, not ==). @sebastianstock or somebody else should open an issue with the up-esb authors.

jarkenau commented 5 months ago

Related PR https://github.com/aiplan4eu/embedded-systems-bridge/pull/45