You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have observed that throughout the Simphony project dependencies are defined implicitly. The use of >= sign instead of == and not putting the full output of pip freeze in requirements.txt file would be problematic in future.
I suggest to define direct and indirect dependencies in requirements.txt explicitly. This will let pip to install the exact versions that we are sure the application works fine with them. Moreover, in case of reusable components we can use a dependency range inside setup.py files. This will allow the component to support minor dependency upgrades while major updates would need exclusive attention of developers and an update in our side.
Since this project is like a toplevel project, I register this issue here.
I have observed that throughout the Simphony project dependencies are defined implicitly. The use of >= sign instead of == and not putting the full output of
pip freezeinrequirements.txtfile would be problematic in future.I suggest to define direct and indirect dependencies in
requirements.txtexplicitly. This will letpipto install the exact versions that we are sure the application works fine with them. Moreover, in case of reusable components we can use a dependency range insidesetup.pyfiles. This will allow the component to support minor dependency upgrades while major updates would need exclusive attention of developers and an update in our side.Since this project is like a toplevel project, I register this issue here.