florian
11/17/2022, 8:28 PMchristoph
11/17/2022, 8:42 PMPython.h: No such file or directory just means that pip install is trying to build some python package from source rather than using a binary wheel. In order to build python packages from source, there is a high chance that a C compiler will be invoked. Because Python is just C 😁 ... The C compiler then needs the Python development header files to be present, which are not present in your case.
I'll take a guess and say that you using something like Ubuntu. Ubuntu (and many other old school Linux OS) do not install development headers by default. You'll need to manually install them.
Something like:
sudo apt-get install build-essential python3-dev should resolve your problemchristoph
11/17/2022, 8:44 PMciso8601) for tap-gitlab is not using a binary wheel ....christoph
11/17/2022, 8:46 PMvisch
11/17/2022, 9:38 PMsudo apt install build-essential
ciso8601 has a wheel I think but only for certain versions and on a certain version of Python.
https://pypi.org/project/ciso8601-wheels/2.2.0/#files fwiw I think someone published the wheels seperately, no idea whether to trust them or notedgar_ramirez_mondragon
11/17/2022, 10:42 PMsinger-sdk to >0.11.0 should get rid of the offending dependency. I’ve logged https://github.com/MeltanoLabs/Meta/issues/25 to ensure all MeltanoLabs have up-to-date dependencies