diff options
| author | Damien Regad <dregad@mantisbt.org> | 2021-08-13 18:51:52 +0200 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2021-08-13 18:52:33 +0200 |
| commit | 8b224856d9b3a150d82931c8c939310ec26c6a5f (patch) | |
| tree | 43ef13bb525f9fc75fa7afc91f8f0405eb8b4e50 /scripts | |
| parent | ef2c753141fece0ebc34ea040a5003b2adc7ac60 (diff) | |
| download | adodb-8b224856d9b3a150d82931c8c939310ec26c6a5f.tar.gz adodb-8b224856d9b3a150d82931c8c939310ec26c6a5f.tar.bz2 adodb-8b224856d9b3a150d82931c8c939310ec26c6a5f.zip | |
Build scripts require Python 3.7 or later
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/updateversion.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/updateversion.py b/scripts/updateversion.py index 8fb74174..57ee9499 100755 --- a/scripts/updateversion.py +++ b/scripts/updateversion.py @@ -464,5 +464,8 @@ def main(): # end main() +if sys.version_info < (3, 7): + print("ERROR: Python 3.7 or later is required") + sys.exit(1) if __name__ == "__main__": main() |
