1
0
mirror of synced 2025-12-25 02:09:19 -05:00

allow importing IncrementalMixin from airbyte_cdk.sources.streams (#11858)

* allow importing IncrementalMixin from airbyte_cdk.sources.streams

* format file

* update docs with hint on where to import IncrementalMixin from

* bump cdk version to 0.1.54

* update changelog

* only build python 3.9

* update changelog with python dep bump
This commit is contained in:
Pedro S. Lopez
2022-04-14 11:42:57 -07:00
committed by GitHub
parent edd2fae49c
commit a6a6be2588
4 changed files with 8 additions and 5 deletions

View File

@@ -137,6 +137,7 @@ Let's also add this parameter to the constructor and declare the `cursor_field`:
```python
from datetime import datetime, timedelta
from airbyte_cdk.sources.streams import IncrementalMixin
class ExchangeRates(HttpStream, IncrementalMixin):