Skip to content

Commit 5a05939

Browse files
committed
update from v14.2.0 release candidate
1 parent b8be058 commit 5a05939

File tree

2 files changed

+471
-100
lines changed

2 files changed

+471
-100
lines changed

Query.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
@@ -17,7 +17,10 @@
1717

1818
import sys
1919
if 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

2225
import cmd
2326
import 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")

0 commit comments

Comments
 (0)