Skip to content

Commit

Permalink
Require Cython to be found (#734)
Browse files Browse the repository at this point in the history
Resolves #731

Authors:
  - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
  - Bradley Dice (https://github.com/bdice)

URL: #734
  • Loading branch information
vyasr authored Dec 17, 2024
1 parent dcbd3ad commit 6d6c07b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ dependencies:
common:
- output_types: [conda, requirements]
packages:
- cython>=0.29,<0.30
- cython
- libpng
- zlib
- output_types: [conda]
Expand Down
2 changes: 1 addition & 1 deletion rapids-cmake/cython-core/init.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ macro(rapids_cython_init)
endif()

find_package(Python COMPONENTS Interpreter Development.Module REQUIRED)
find_program(CYTHON "cython")
find_program(CYTHON "cython" REQUIRED)

if(NOT CYTHON_FLAGS)
set(CYTHON_FLAGS "--directive binding=True,embedsignature=True,always_allow_keywords=True")
Expand Down

0 comments on commit 6d6c07b

Please sign in to comment.