airbyte-source-s3 4.13.0__py3-none-any.whl → 4.13.1__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.

Potentially problematic release.


This version of airbyte-source-s3 might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-s3
3
- Version: 4.13.0
3
+ Version: 4.13.1
4
4
  Summary: Source implementation for S3.
5
5
  License: ELv2
6
6
  Author: Airbyte
@@ -10,7 +10,7 @@ Classifier: License :: Other/Proprietary License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
- Requires-Dist: airbyte-cdk[file-based] (>=6.38.5,<7.0.0)
13
+ Requires-Dist: airbyte-cdk[file-based] (>=6,<7)
14
14
  Requires-Dist: dill (>=0.3.4,<0.4.0)
15
15
  Requires-Dist: pendulum (>=3.0.0,<4.0.0)
16
16
  Requires-Dist: pytz (>=2024.2,<2025.0)
@@ -17,9 +17,9 @@ source_s3/v4/config.py,sha256=v9upt0VvzRT2m50Ym8yS2E1F0hNzP21m3zzo7cAG0Wk,4271
17
17
  source_s3/v4/cursor.py,sha256=kZj_6Wtl2yVAVeKZW67XyYQOk2XtbYazTgswEgGfKnI,7298
18
18
  source_s3/v4/legacy_config_transformer.py,sha256=OjKwGBYPHZvhZRKGO1LOAR7-cAT-9KvDRQY-G93eoic,7840
19
19
  source_s3/v4/source.py,sha256=jugIY53C_G9QhQRwKWBPcXXUgYKF_RESSaewzF_HXhc,8967
20
- source_s3/v4/stream_reader.py,sha256=jlDTZZPlRmBY2CO6tji2VgdOpARwfGW_K_a-6QNn0jY,15828
20
+ source_s3/v4/stream_reader.py,sha256=VgybJxKa7jO3Glkc2V2BZ-CF2xkfn-vVs0N5TW_F4NM,15812
21
21
  source_s3/v4/zip_reader.py,sha256=5Atoxu3Si0w5fNT6l_qQ-C1ZlKYt2DgV4Lxf8tTU5hw,14608
22
- airbyte_source_s3-4.13.0.dist-info/METADATA,sha256=QeOsouVnnRoYLJGET4DvI7Oxy8LrjWSOIScJIvH2a-8,5384
23
- airbyte_source_s3-4.13.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
24
- airbyte_source_s3-4.13.0.dist-info/entry_points.txt,sha256=1ndXy1aXftjfCR82yLKg797X8-O5mD95tz6rNKA_1dE,47
25
- airbyte_source_s3-4.13.0.dist-info/RECORD,,
22
+ airbyte_source_s3-4.13.1.dist-info/METADATA,sha256=Lzz4njFbKe9mOaiJFq93d5HK82nNklhQCSoIZHFl7zs,5375
23
+ airbyte_source_s3-4.13.1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
24
+ airbyte_source_s3-4.13.1.dist-info/entry_points.txt,sha256=1ndXy1aXftjfCR82yLKg797X8-O5mD95tz6rNKA_1dE,47
25
+ airbyte_source_s3-4.13.1.dist-info/RECORD,,
@@ -6,7 +6,7 @@ import logging
6
6
  import time
7
7
  from datetime import datetime
8
8
  from io import IOBase
9
- from os import getenv, makedirs, path
9
+ from os import getenv
10
10
  from typing import Dict, Iterable, List, Optional, Set, cast
11
11
 
12
12
  import boto3.session