Hi all, I am attempting to add the Microsoft Dynam...
# plugins-general
r
Hi all, I am attempting to add the Microsoft Dynamics Business Central extractor tap but get this error: "ERROR: No matching distribution found for singer-sdk<0.5.0,>=0.4.2". I'm slightly confused because as far as I can tell the newest version of singer-sdk is 0.36? Can't understand why it would be requiring a newer version than what exists.
r
The tap is current constrained to SDK version
^0.4.2
, meaning that it will try to resolve the latest compatible version from the range starting from
0.4.2
up to (but not including)
0.5.0
. https://python-poetry.org/docs/dependency-specification/#caret-requirements Looks like those older SDK versions didn't support Python >3.11: https://github.com/meltano/sdk/blob/a6195964a0151066c3b03aef030b8a5608756e77/pyproject.toml#L30
👍 1