The syntax of requirements files supports === as a version comparison operator, for cases where the exact version as specified is to be used. The difference to using == is quite subtle and is in the area of special development versions (not sure I can describe that properly).
The minimum-constraints.txt files used in the OpenStack project for example use ===.
It seems pyup is not recognizing === at all, and i suggest to add support for it.
The syntax of requirements files supports
===
as a version comparison operator, for cases where the exact version as specified is to be used. The difference to using==
is quite subtle and is in the area of special development versions (not sure I can describe that properly).The minimum-constraints.txt files used in the OpenStack project for example use
===
.It seems pyup is not recognizing
===
at all, and i suggest to add support for it.