Issue
Is there a way to specify a package version in BuildRequires
or Requires
directives inside the rpm
spec file? For example, I know that my package can be built with python
version 3.5+ (i.e. 3.6 is fine too). I could not find this specific syntax.
Solution
It's as you would expect:
Requires: python >= 3.5
Answered By - Aaron D. Marasco Answer Checked By - Clifford M. (WPSolving Volunteer)