install cannot find built package in gh action macos worker #4677
-
I'm writing a C extension (called dictionaries) and when building the package with Here are the logs from the macos-worker:
Linux worker logs:
It seems like on Linux and Windows when processing dependencies, after having installed the package, setuptools find the local package, but on MacOs it doesn't. Is this some known behaviour of MacOS systems? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Please don't use Does the error persist if you use |
Beta Was this translation helpful? Give feedback.
Please don't use
python setup.py install
. Usingsetup.py
as a CLI tool is deprecated (setup.py
should only be used as a configuration file, not CLI).Does the error persist if you use
pip
instead?