diff options
Diffstat (limited to '')
| -rwxr-xr-x | lang/python/setup.py.in | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in index 3d0b7305..9669c285 100755 --- a/lang/python/setup.py.in +++ b/lang/python/setup.py.in @@ -75,8 +75,8 @@ if '-' in version:      version = version.split('-')[0]  major, minor, patch = map(int, version.split('.')) -if not (major > 1 or (major == 1 and minor >= 6)): -    sys.exit('Need at least GPGME version 1.6, found {}.'.format(version_raw)) +if not (major > 1 or (major == 1 and minor >= 7)): +    sys.exit('Need at least GPGME version 1.7, found {}.'.format(version_raw))  if not gpgme_h:      gpgme_h = os.path.join(getconfig("prefix")[0], "include", "gpgme.h") | 
