airbyte-source-s3 4.13.0__tar.gz → 4.13.2__tar.gz

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.

Files changed (24) hide show
  1. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/PKG-INFO +2 -2
  2. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/pyproject.toml +2 -2
  3. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/stream_reader.py +1 -1
  4. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/README.md +0 -0
  5. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/__init__.py +0 -0
  6. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/exceptions.py +0 -0
  7. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/run.py +0 -0
  8. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source.py +0 -0
  9. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/__init__.py +0 -0
  10. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/formats/__init__.py +0 -0
  11. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/formats/avro_spec.py +0 -0
  12. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/formats/csv_spec.py +0 -0
  13. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/formats/jsonl_spec.py +0 -0
  14. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/formats/parquet_spec.py +0 -0
  15. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/source.py +0 -0
  16. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/source_files_abstract/spec.py +0 -0
  17. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/stream.py +0 -0
  18. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/utils.py +0 -0
  19. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/__init__.py +0 -0
  20. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/config.py +0 -0
  21. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/cursor.py +0 -0
  22. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/legacy_config_transformer.py +0 -0
  23. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/source.py +0 -0
  24. {airbyte_source_s3-4.13.0 → airbyte_source_s3-4.13.2}/source_s3/v4/zip_reader.py +0 -0
@@ -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.2
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)
@@ -5,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "4.13.0"
8
+ version = "4.13.2"
9
9
  name = "airbyte-source-s3"
10
10
  description = "Source implementation for S3."
11
11
  authors = [
@@ -33,7 +33,7 @@ pendulum = "^3.0.0"
33
33
  extras = [
34
34
  "file-based",
35
35
  ]
36
- version = "^6.38.5"
36
+ version = "^6"
37
37
 
38
38
  [tool.poetry.dependencies.smart-open]
39
39
  extras = [
@@ -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