Closed tiborsimko closed 6 years ago
Internal REANA dependencies done.
We may still want to limit some external dependencies, especially some "critical" ones that may break things, such as Celery or Bravado.
All done WRT Bravado and Celery. Did not touch Flask or SQLAlchemy.
Everything done in respective repositories.
Now that
reana-commons
andreana-db
are released on PyPI, let us put an upper boundary in oursetup.py
dependencies so that REANA v0.3.0 will be re-buildable and re-installable even in several months when we start working on and releasing REANA 0.4.0 or later versions.(1) We should set upper boundaries for our own shared packages, for example:
This needs to be done in many repositories:
(2) We should consider pinning all important dependencies, for example here is how we depend on Celery:
If Celery 4.3 is released in a few months and if the way how we use it is changed, we use it, then REANA v0.3.0 may not be installable then.
We may want to pin fully (
celery==4.1.0
) or we may rather pin for a reasonable interval (celery>=4.1.0,<4.2.0
). The best pinning philosophy will depend on each concrete dependency.(3) Sometimes we don't even indicate any version, e.g. only
zmq
. We should also add versions that are known to work at this v0.3.0 release time.