79507810

Date: 2025-03-13 22:58:29
Score: 0.5
Natty:
Report link

In your code, you have this line:

package_data={"test_package": ["**/*.pxd", "**/*.pxy"]},

Which is the cause of this problem. Changing it to

package_data={"test_package": ["**/*.pxd", "**/*.pyx"]},

Will use the pyx function and fix this issue.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Starship