Skip to content

Commit

Permalink
Support for cython-blis
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotrevisani committed Sep 20, 2023
1 parent fdb4340 commit fc40d52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion grayskull/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ class Configuration:
]
)
is_strict_cf: bool = False
pkg_need_c_compiler: Tuple = field(default_factory=lambda: ("cython",))
pkg_need_c_compiler: Tuple = field(
default_factory=lambda: ("cython", "cython-blis", "blis")
)
pkg_need_cxx_compiler: Tuple = field(default_factory=lambda: ("pybind11",))
url_pypi_metadata: str = "https://pypi.org/pypi/{pkg_name}/json"
download: bool = False
Expand Down
1 change: 0 additions & 1 deletion grayskull/strategy/pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ def get_val(key):
source_section["url"] = adjust_source_url_to_include_placeholders(
source_section["url"], get_val("version")
)

return {
"author": get_val("author"),
"name": get_val("name"),
Expand Down

0 comments on commit fc40d52

Please sign in to comment.