Skip to content

Commit 30c23f2

Browse files
committed
black
1 parent 1145c72 commit 30c23f2

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

metadata.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
version: 2.0.0
3-
version_info: (2,0,0)
3+
version_info: (2,0,0,'final',0)
44
description: Python interface to MySQL
55
author: Inada Naoki
66
author_email: [email protected]

setup_windows.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,17 @@ def get_config():
1818
vcversion = int(get_build_version())
1919
if client == "mariadbclient":
2020
library_dirs = [os.path.join(connector, "lib", "mariadb")]
21-
libraries = ["kernel32", "advapi32", "wsock32", "shlwapi", "Ws2_32", "crypt32", "secur32", "bcrypt", client]
21+
libraries = [
22+
"kernel32",
23+
"advapi32",
24+
"wsock32",
25+
"shlwapi",
26+
"Ws2_32",
27+
"crypt32",
28+
"secur32",
29+
"bcrypt",
30+
client,
31+
]
2232
include_dirs = [os.path.join(connector, "include", "mariadb")]
2333
else:
2434
library_dirs = [

0 commit comments

Comments
 (0)