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 01df5d2 commit 74990f9Copy full SHA for 74990f9
HISTORY.rst
@@ -3,6 +3,13 @@
3
History
4
-------
5
6
+1.4.2
7
+++++++++++++++++++
8
+
9
+* The extension source directory was moved to prevent an ``ImportWarning``
10
+ when importing the module on Python 2 with ``-Wdefault`` set. Reported by
11
+ David Szotten and Craig de Stigter. GitHub #31.
12
13
1.4.1 (2018-06-22)
14
++++++++++++++++++
15
maxminddb/extension/maxminddb.c extension/maxminddb.cmaxminddb/extension/maxminddb.c renamed to extension/maxminddb.c
setup.py
@@ -33,7 +33,7 @@
33
Extension(
34
'maxminddb.extension',
35
libraries=['maxminddb'],
36
- sources=['maxminddb/extension/maxminddb.c'],
+ sources=['extension/maxminddb.c'],
37
extra_compile_args=compile_args,
38
)
39
]
0 commit comments