summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2019-11-25 12:28:58 +0200
committerHugo <hugovk@users.noreply.github.com>2019-11-25 12:28:58 +0200
commite67e03ca09df6f8014b47235560e1de8eb7252fe (patch)
tree3f0d251a5a4404eeefb92e3cf36d111a1441f162 /scripts
parent0193081df5a7dbf7deb448d29c90ea061d73672a (diff)
downloadtesttools-e67e03ca09df6f8014b47235560e1de8eb7252fe.tar.gz
Add support for Python 3.7 and 3.8
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/all-pythons2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/all-pythons b/scripts/all-pythons
index fbc36c9..e5c28bb 100755
--- a/scripts/all-pythons
+++ b/scripts/all-pythons
@@ -89,5 +89,5 @@ def now():
if __name__ == '__main__':
sys.path.append(ROOT)
result = TestProtocolClient(sys.stdout)
- for version in '2.7 3.4 3.5 3.6'.split():
+ for version in '2.7 3.4 3.5 3.6 3.7 3.8'.split():
run_for_python(version, result, sys.argv[1:])