We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb8714 commit 0a49a79Copy full SHA for 0a49a79
setup.py
@@ -15,18 +15,8 @@
15
JYTHON = sys.platform.startswith("java")
16
requirements = []
17
18
-if sys.version_info[0] == 2 or (sys.version_info[0] == 3 and sys.version_info[1] < 3):
19
- requirements.append("ipaddress")
20
- if os.environ.get("SNYK_TOKEN"):
21
- with open("requirements.txt", "w") as f:
22
- for r in requirements:
23
- f.write(r + "\n")
24
-
25
compile_args = ["-Wall", "-Wextra"]
26
27
-if sys.version_info[0] == 2:
28
- compile_args.append("-fno-strict-aliasing")
29
30
ext_module = [
31
Extension(
32
"maxminddb.extension",
0 commit comments