File tree Expand file tree Collapse file tree 2 files changed +471
-100
lines changed
Expand file tree Collapse file tree 2 files changed +471
-100
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22# This file is part of VoltDB.
3- # Copyright (C) 2008-2021 VoltDB Inc.
3+ # Copyright (C) 2008-2024 Volt Active Data Inc.
44#
55# This program is free software: you can redistribute it and/or modify
66# it under the terms of the GNU Affero General Public License as
1717
1818import sys
1919if sys .hexversion < 0x03060000 :
20- raise Exception ("Python version 3.6 or greater is required." )
20+ # For now, voltdbclient allows a minimum of 3.6 so that the
21+ # current API cab also be used on older systems. New features
22+ # may not all be available on versions of Python older than 3.9.
23+ raise Exception ("Python version 3.6 or greater is required (3.9+ is preferred)." )
2124
2225import cmd
2326import socket
@@ -532,4 +535,4 @@ def help(program_name):
532535 if len (sys .argv ) > 3 :
533536 command .onecmd (" " .join (sys .argv [3 :]))
534537 else :
535- command .cmdloop ("VoltDB Query Client" )
538+ command .cmdloop ("DB Query Client" )
You can’t perform that action at this time.
0 commit comments