The recommended approach for python packages is to ship a setup.py (a.k.a python package) with the most minimal of requirement specifiers and let PIP to sort out the appropriate version set. This requires loose versions in our packages.
To get a "working set" of versions that always works, fprime will publish a requirements.txt that fixes all versions across the project.
Change Description
The recommended approach for python packages is to ship a
setup.py
(a.k.a python package) with the most minimal of requirement specifiers and let PIP to sort out the appropriate version set. This requires loose versions in our packages.To get a "working set" of versions that always works,
fprime
will publish arequirements.txt
that fixes all versions across the project.