Replies: 1 comment 3 replies
-
If you use "build isolation" (which requires a Please check out |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all! I was checking a weird problem on the GDAL python bindings.... doing it short.
Actually, setuptools only permits to import a module after call
setup
withsetup_requires
with the module we want to import,Now here is the challenge, in GDAL, numpy is an optional feature, you don't need numpy to install gdal, but if you want to use it, GDAL need to check data of numpy, the included folders, and parse that data to the
setup
statement....So... to call
setup
you need import numpy.To import numpy, you must call
setup
Numpy is optional, should not be installed as a requirement
Any ideas how to handle this?
Thx!
Beta Was this translation helpful? Give feedback.
All reactions