Skip to content

Commit f01444b

Browse files
committed
Revert "remove outdated config"
This reverts commit 5a1c243.
1 parent a5553f3 commit f01444b

12 files changed

+12
-0
lines changed

src/rapidfuzz/_feature_detector_cpp.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
from libc.stdint cimport uint32_t
45

src/rapidfuzz/cpp_common.pxd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
from cpython.object cimport PyObject
45
from cpython.pycapsule cimport PyCapsule_GetPointer, PyCapsule_IsValid, PyCapsule_New

src/rapidfuzz/distance/_initialize_cpp.pxd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
from cpp_common cimport RfEditops, RfOpcodes
45
from libcpp cimport bool

src/rapidfuzz/distance/_initialize_cpp.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
from cpp_common cimport EditType, RfEditOp, RfOpcode, convert_string, is_valid_string
45
from cpython.list cimport PyList_New, PyList_SET_ITEM

src/rapidfuzz/distance/metrics_cpp.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
from . import metrics_py
45
from ._initialize_cpp import Editops
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
# this is a hack since I could not get this to build in cmake without it
45
include "metrics_cpp.pyx"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
# this is a hack since I could not get this to build in cmake without it
45
include "metrics_cpp.pyx"

src/rapidfuzz/fuzz_cpp.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
from . import fuzz_py
45
from .distance._initialize_cpp import ScoreAlignment

src/rapidfuzz/fuzz_cpp_avx2.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
# this is a hack since I could not get this to build in cmake without it
45
include "fuzz_cpp.pyx"

src/rapidfuzz/fuzz_cpp_sse2.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# distutils: language=c++
2+
# cython: language_level=3, binding=True
23

34
# this is a hack since I could not get this to build in cmake without it
45
include "fuzz_cpp.pyx"

0 commit comments

Comments
 (0)