We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8da6fc commit 16e3bb0Copy full SHA for 16e3bb0
1 file changed
setup.py
@@ -23,9 +23,9 @@
23
]
24
25
if sys.platform == "win32":
26
- cflags = []
+ cflags = ["/O2"]
27
else:
28
- cflags = ["-msse4.2"]
+ cflags = ["-O3", "-msse4.2"]
29
30
extensions = [Extension(
31
"metrohash",
@@ -44,7 +44,7 @@
44
setup(
45
author="Dobatymo",
46
name="metrohash-python",
47
- version="1.1.3.post1",
+ version="1.1.3.post2",
48
url="https://github.com/Dobatymo/metrohash-python",
49
ext_modules=extensions,
50
description="Python bindings for MetroHash",
0 commit comments