Skip to content

Commit 9cb3c74

Browse files
authoredOct 2, 2020
Convert to python3 (ClickHouse#15007)
1 parent 404c199 commit 9cb3c74

File tree

203 files changed

+1403
-1404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+1403
-1404
lines changed
 

‎benchmark/greenplum/result_parser.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
2+
23

3-
from __future__ import print_function
44
import sys
55
import json
66

@@ -99,7 +99,7 @@ def gen_html_json(options, arguments):
9999
tuples = read_stats_file(options, arguments[1])
100100
print('{')
101101
print('"system: GreenPlum(x2),')
102-
print('"version": "%s",' % '4.3.9.1')
102+
print(('"version": "%s",' % '4.3.9.1'))
103103
print('"data_size": 10000000,')
104104
print('"time": "",')
105105
print('"comments": "",')

‎debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ Description: debugging symbols for clickhouse-common-static
6262
Package: clickhouse-test
6363
Priority: optional
6464
Architecture: all
65-
Depends: ${shlibs:Depends}, ${misc:Depends}, clickhouse-client, bash, expect, python, python-lxml, python-termcolor, python-requests, curl, perl, sudo, openssl, netcat-openbsd, telnet, brotli, bsdutils
65+
Depends: ${shlibs:Depends}, ${misc:Depends}, clickhouse-client, bash, expect, python3, python3-lxml, python3-termcolor, python3-requests, curl, perl, sudo, openssl, netcat-openbsd, telnet, brotli, bsdutils
6666
Description: ClickHouse tests

0 commit comments

Comments
 (0)
Please sign in to comment.