airbyte-source-google-sheets 0.5.11.dev202407191327__py3-none-any.whl → 0.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.5.11.dev202407191327
3
+ Version: 0.6.0
4
4
  Summary: Source implementation for Google Sheets.
5
5
  Home-page: https://airbyte.com
6
6
  License: Elv2
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.10
14
14
  Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
16
  Requires-Dist: Unidecode (==1.3.8)
17
- Requires-Dist: airbyte-cdk (>=0,<1)
17
+ Requires-Dist: airbyte-cdk (>=3,<4)
18
18
  Requires-Dist: google-api-python-client (==2.114.0)
19
19
  Requires-Dist: google-auth-httplib2 (==0.2.0)
20
20
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/google-sheets
@@ -2,13 +2,13 @@ source_google_sheets/__init__.py,sha256=-aGVMRfrgWjYad3_cHofIptEEa5WMQzTvFD92Hev
2
2
  source_google_sheets/client.py,sha256=k7AAS0XbHdKDIywgrRMTpKMcKYQfHOjAi2s-MjDRqQs,2391
3
3
  source_google_sheets/helpers.py,sha256=kKXop3YyQ3jPYlWgWW3GmRPxDmnuoHZ4joa3rQLCxUQ,10642
4
4
  source_google_sheets/models/__init__.py,sha256=Z-4MTpxG5t2jGhXzs4PPoIOa83zw3jRnUDx0N9Puv3s,61
5
- source_google_sheets/models/spreadsheet.py,sha256=ebGZ39_QKT6Lrf7Hblo3pdjswFhoEzF8vno2TmEMyUU,1109
6
- source_google_sheets/models/spreadsheet_values.py,sha256=OFbSvgeo5LnfMy6BURtDvWfRsJn7GN2AYMVkNQNkE-o,437
5
+ source_google_sheets/models/spreadsheet.py,sha256=fsHREpPEN36wCzGdqgfJ2EVW40UDZ_lS863A4XT2pGo,1112
6
+ source_google_sheets/models/spreadsheet_values.py,sha256=y8ytuTqwpziJ2ICl0xhlRWgjMkxTfxOalRd414PMHZM,440
7
7
  source_google_sheets/run.py,sha256=_f5-LNqMzBuHtCD1YoUBxnA0fszgqmdNGcN7y_AmXU0,237
8
8
  source_google_sheets/source.py,sha256=GbBxrW40DPIEFEzI_3jvRUS_1vYMqKAcAYA43oXRLJ8,13049
9
9
  source_google_sheets/spec.yaml,sha256=WrPdH2xLCdyM-kY-pRqbwICcNPhv8nqnb2gdbslTsaQ,5141
10
10
  source_google_sheets/utils.py,sha256=ZB5lboyffiuuQdSarqe8AqBGEyiQpxiOfxqcU7Ght8A,2289
11
- airbyte_source_google_sheets-0.5.11.dev202407191327.dist-info/METADATA,sha256=M_bsN8DlGGJ8pwbc-iCWMfG9zPdPREhnXhMYwir75OE,5554
12
- airbyte_source_google_sheets-0.5.11.dev202407191327.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
- airbyte_source_google_sheets-0.5.11.dev202407191327.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
14
- airbyte_source_google_sheets-0.5.11.dev202407191327.dist-info/RECORD,,
11
+ airbyte_source_google_sheets-0.6.0.dist-info/METADATA,sha256=dDZ8nGKLD2Tf4ddD4C1qlD-M-CRpDv7MMsiT4yM7_yI,5537
12
+ airbyte_source_google_sheets-0.6.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
+ airbyte_source_google_sheets-0.6.0.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
14
+ airbyte_source_google_sheets-0.6.0.dist-info/RECORD,,
@@ -7,7 +7,7 @@ from __future__ import annotations
7
7
 
8
8
  from typing import List, Optional
9
9
 
10
- from pydantic import BaseModel, Extra
10
+ from pydantic.v1 import BaseModel, Extra
11
11
 
12
12
 
13
13
  class SpreadsheetProperties(BaseModel):
@@ -7,7 +7,7 @@ from __future__ import annotations
7
7
 
8
8
  from typing import List, Optional
9
9
 
10
- from pydantic import BaseModel, Extra
10
+ from pydantic.v1 import BaseModel, Extra
11
11
 
12
12
 
13
13
  class ValueRange(BaseModel):