Skip to content

Commit 5a1c243

Browse files
committed
remove outdated config
1 parent 83048eb commit 5a1c243

12 files changed

+0
-12
lines changed

src/rapidfuzz/_feature_detector_cpp.pyx

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

43
from libc.stdint cimport uint32_t
54

src/rapidfuzz/cpp_common.pxd

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

43
from cpython.object cimport PyObject
54
from cpython.pycapsule cimport PyCapsule_GetPointer, PyCapsule_IsValid, PyCapsule_New

src/rapidfuzz/distance/_initialize_cpp.pxd

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

43
from cpp_common cimport RfEditops, RfOpcodes
54
from libcpp cimport bool

src/rapidfuzz/distance/_initialize_cpp.pyx

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

43
from cpp_common cimport EditType, RfEditOp, RfOpcode, convert_string, is_valid_string
54
from cpython.list cimport PyList_New, PyList_SET_ITEM

src/rapidfuzz/distance/metrics_cpp.pyx

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

43
from . import metrics_py
54
from ._initialize_cpp import Editops
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# distutils: language=c++
2-
# cython: language_level=3, binding=True
32

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

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

src/rapidfuzz/fuzz_cpp.pyx

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

43
from . import fuzz_py
54
from .distance._initialize_cpp import ScoreAlignment

src/rapidfuzz/fuzz_cpp_avx2.pyx

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

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

src/rapidfuzz/fuzz_cpp_sse2.pyx

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

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

0 commit comments

Comments
 (0)