You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that the documentation around Cython extensions includes Cython in install_requires. While Cython is a dependency in this case, it usually doesn't make sense to have it install_requires (particularly if users are merely using Cython to build their package). In this case, it may make more sense to include pyproject.toml. If it is being used to compile code at runtime, this is a different story. Is the intent for users to have compilation occur at runtime using Cython or is it to build extensions that are later used?
The text was updated successfully, but these errors were encountered:
What is your question?
It appears that the documentation around Cython extensions includes Cython in
install_requires
. While Cython is a dependency in this case, it usually doesn't make sense to have itinstall_requires
(particularly if users are merely using Cython to build their package). In this case, it may make more sense to includepyproject.toml
. If it is being used to compile code at runtime, this is a different story. Is the intent for users to have compilation occur at runtime using Cython or is it to build extensions that are later used?The text was updated successfully, but these errors were encountered: