@jbicha Can you explain what exactly is the issue ?
From my understanding, the dev requirements should not be an issue for packages as they are not required by BuildStream, they are only required for running tests and developing BuildStream, which we use tox for.
For pylint for example, it is important that in CI we always use exactly the same version wherever we run tests, bumping the version of pylint used should itself also be gated on CI; otherwise newer versions of pylint inevitably end up introducing new linter errors, such that we cannot easily tell if a commit being tested introduced breakage, or if a random new version of pylint introduced the error.
I cannot recall off hand why coverage is pinned, but there are probably breaking combinations and pinning it was safest; of course again we only use this for collecting coverage reports of tests, which again are run under tox.
Maybe if you can explain exactly the issue you are facing, we can reorganize things to work better for everyone :)
Generally, we prefer to run build tests during the build in Debian.
I tried enabling the tests in Debian, ignoring the mismatched versions, but the tests still fail and I'm not sure whether the tests are even useful in Debian.
I see, from the looks of the build log, it appears the remaining problem is some confusion / import errors with some directories which have a .pybuild/ directory (not sure how that can appear during regular python3 setup.py test invocation).
For the versions, it is true that we have separated .in (loose requirements) from .txt (specific requirements) files such that we can separate the general requirements from the tested set of dependencies; so it should be actually fine to change these to >= in the .in files.
EDIT: Further, it appears that we should have a way to ignore the .txt files at python3 setup.py build and python3 setup.py install time; as I think the setup.py will currently only read the .txt version. Actually this is untrue, invocations of setup.py always consider the .in files; so if we can remove the restrictions then this should "Just Work".
That said, today I have been testing both master and bst-1.2 branches against an updated set of requirements, and the tests have been failing... trying to find out if this is being caused by a new coverage version right now.