airbyte-source-hardcoded-records 0.0.25__tar.gz → 0.0.27__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-hardcoded-records
3
- Version: 0.0.25
3
+ Version: 0.0.27
4
4
  Summary: Source implementation for hardcoded recprds.
5
5
  License: MIT
6
6
  Author: Airbyte
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
- Requires-Dist: airbyte-cdk
15
+ Requires-Dist: airbyte-cdk (==6.6.1)
16
16
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/hardcoded-records
17
17
  Project-URL: Homepage, https://airbyte.com
18
18
  Project-URL: Repository, https://github.com/airbytehq/airbyte
@@ -5,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.0.25"
8
+ version = "0.0.27"
9
9
  name = "airbyte-source-hardcoded-records"
10
10
  description = "Source implementation for hardcoded recprds."
11
11
  authors = [
@@ -21,8 +21,8 @@ packages = [
21
21
  ]
22
22
 
23
23
  [tool.poetry.dependencies]
24
- python = "^3.10,<4.0"
25
- airbyte-cdk = "*"
24
+ python = ">=3.10,<4.0"
25
+ airbyte-cdk = "6.6.1"
26
26
 
27
27
  [tool.poetry.scripts]
28
28
  source-hardcoded-records = "source_hardcoded_records.run:run"
@@ -30,3 +30,8 @@ source-hardcoded-records = "source_hardcoded_records.run:run"
30
30
  [tool.poetry.group.dev.dependencies]
31
31
  pytest-mock = "^3.6.1"
32
32
  pytest = "^6.2"
33
+
34
+ [tool.poe]
35
+ include = [
36
+ "${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml",
37
+ ]
@@ -16,7 +16,7 @@ class HardcodedStream(Stream, ABC):
16
16
  self.count = count
17
17
 
18
18
  def read_records(self, **kwargs) -> Iterable[Mapping[str, Any]]:
19
- """ """
19
+ """Generate records from the stream."""
20
20
  for _ in range(self.count):
21
21
  yield self.sample_record
22
22