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 1b45c26 commit 097705bCopy full SHA for 097705b
README.md
@@ -8,6 +8,7 @@ Differences between original repository and fork:
8
* No deprecations. The following deprecations has been fixed:
9
* UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument.
10
* DeprecationWarning: 'np.float' is a deprecated alias for builtin 'float'.
11
+ * FutureWarning: Cython directive 'language_level' not set.
12
* No unnecessary files.
13
14
# Installation
widerface_evaluate/setup.py
@@ -10,4 +10,4 @@
import numpy
package = Extension('bbox', ['box_overlaps.pyx'], include_dirs=[numpy.get_include()])
-setup(ext_modules=cythonize([package]))
+setup(ext_modules=cythonize([package], language_level='3str'))
0 commit comments