[source-zendesk-chat] Connector not working in PyAirbyte #52063
Labels
area/connectors
Connector related issues
autoteam
community
needs-triage
team/connectors-python
type/bug
Something isn't working
Connector Name
source-zendesk-chat
Connector Version
1.0.1
What step the error happened?
During the sync
Relevant information
pyproject.toml specifies the cdk version to be
airbyte-cdk = "^0"
.However there are breaking changes between v0.72.2 (version locked in poetry.lock) and v0.90.0 (latest v0 of the cdk).
In particular the file cursor.py has been moved in this commit to airbyte_cdk/sources/streams/checkpoint/cursor.py.
While the poetry.lock committed still specifies cdk v0.72.2, the pyproject.toml specifies
airbyte-cdk = "^0"
and this is what is published in pypi.You can check that by downloading the wheel, unzip and check the METADATA file, it says:
When working with PyAirbyte we build a venv based on the wheel, which installs v0.90.0 of the cdk and so the source fails because of the breaking change.
This is easily testable locally in this repository:
the last command will quickly return:
Relevant log output
Contribute
The text was updated successfully, but these errors were encountered: