airbyte-source-hardcoded-records 0.0.36__tar.gz → 0.0.38__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,7 +1,7 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-hardcoded-records
3
- Version: 0.0.36
4
- Summary: Source implementation for hardcoded recprds.
3
+ Version: 0.0.38
4
+ Summary: Source implementation for hardcoded records.
5
5
  License: MIT
6
6
  Author: Airbyte
7
7
  Author-email: contact@airbyte.io
@@ -10,7 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
- Requires-Dist: airbyte-cdk (>=6.37,<7.0)
13
+ Requires-Dist: airbyte-cdk (==6.46.0)
14
14
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/hardcoded-records
15
15
  Project-URL: Homepage, https://airbyte.com
16
16
  Project-URL: Repository, https://github.com/airbytehq/airbyte
@@ -5,9 +5,9 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.0.36"
8
+ version = "0.0.38"
9
9
  name = "airbyte-source-hardcoded-records"
10
- description = "Source implementation for hardcoded recprds."
10
+ description = "Source implementation for hardcoded records."
11
11
  authors = [
12
12
  "Airbyte <contact@airbyte.io>",
13
13
  ]
@@ -22,14 +22,16 @@ packages = [
22
22
 
23
23
  [tool.poetry.dependencies]
24
24
  python = "^3.11,<3.13"
25
- airbyte-cdk = "^6.37"
25
+ airbyte-cdk = "6.46.0"
26
26
 
27
27
  [tool.poetry.scripts]
28
28
  source-hardcoded-records = "source_hardcoded_records.run:run"
29
29
 
30
30
  [tool.poetry.group.dev.dependencies]
31
- pytest-mock = "^3.6.1"
31
+ mypy = "^1.15.0"
32
+ ruff = "^0.11.5"
32
33
  pytest = "^8.0.0"
34
+ pytest-mock = "^3.6.1"
33
35
 
34
36
  [tool.poe]
35
37
  include = [
@@ -5,4 +5,5 @@
5
5
 
6
6
  from .source import SourceHardcodedRecords
7
7
 
8
+
8
9
  __all__ = ["SourceHardcodedRecords"]