Skip to content

Commit

Permalink
Merge pull request #23 from thomcom/missed-cudf-cpp-imports
Browse files Browse the repository at this point in the history
Weirdly missed import statements that are guaranteed to fail.
  • Loading branch information
harrism authored Sep 5, 2019

Verified

This commit was signed with the committer’s verified signature.
yegor256 Yegor Bugayenko
2 parents 46f7c21 + 2d8ab4d commit 380192c
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/bindings/query.pxd
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
# cython: embedsignature = True
# cython: language_level = 3

from cudf.bindings.cudf_cpp cimport *
from cudf._lib.cudf cimport *
from libcpp.pair cimport pair

cdef extern from "query.hpp" namespace "cuspatial" nogil:
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/bindings/query.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from cudf.dataframe.column import Column
from cudf.bindings.cudf_cpp import *
from cudf._lib.cudf import *

from libc.stdlib cimport calloc, malloc, free

2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/bindings/soa_readers.pxd
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
# cython: language_level = 3
# distutils: include_dirs = cuspatial/bindings/

from cudf.bindings.cudf_cpp cimport *
from cudf._lib.cudf cimport *
from libcpp.pair cimport pair

cdef extern from "soa_readers.hpp" namespace "cuspatial" nogil:
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/bindings/spatial.pxd
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
# cython: embedsignature = True
# cython: language_level = 3

from cudf.bindings.cudf_cpp cimport *
from cudf._lib.cudf cimport *
from libcpp.pair cimport pair

cdef extern from "point_in_polygon.hpp" namespace "cuspatial" nogil:
2 changes: 1 addition & 1 deletion python/cuspatial/cuspatial/bindings/trajectory.pxd
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
# cython: embedsignature = True
# cython: language_level = 3

from cudf.bindings.cudf_cpp cimport *
from cudf._lib.cudf cimport *
from libcpp.pair cimport pair

cdef extern from "trajectory.hpp" namespace "cuspatial" nogil:

0 comments on commit 380192c

Please sign in to comment.