airbyte-source-github 2.0.0__py3-none-any.whl → 2.1.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.

Potentially problematic release.


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

@@ -1,17 +1,19 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-github
3
- Version: 2.0.0
3
+ Version: 2.1.0
4
4
  Summary: Source implementation for GitHub.
5
5
  Home-page: https://airbyte.com
6
6
  License: ELv2
7
7
  Author: Airbyte
8
8
  Author-email: contact@airbyte.io
9
- Requires-Python: >=3.10,<3.12
9
+ Requires-Python: >=3.10,<3.14
10
10
  Classifier: License :: Other/Proprietary License
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
- Requires-Dist: airbyte-cdk (>=7.3.4,<8.0.0)
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Dist: airbyte-cdk (>=7.4.1,<8.0.0)
15
17
  Requires-Dist: sgqlc (==16.3)
16
18
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/github
17
19
  Project-URL: Repository, https://github.com/airbytehq/airbyte
@@ -1,4 +1,4 @@
1
- source_github/__init__.py,sha256=punPc3v0mXEYOun7cbkfM5KUhgjv72B9DgDhI4VtzcQ,1134
1
+ source_github/__init__.py,sha256=8hLLjFC1wI1mMU442Y5qCcND9qIwyhaANQwT-GAIK0s,1135
2
2
  source_github/backoff_strategies.py,sha256=ChkWEmqZL7Qrr1zidOfjZWlMWIVRVO2yqZ7QE_HaZP8,2287
3
3
  source_github/config_migrations.py,sha256=guUJAdNP-liUciVaJB4ackEEMCN4jd7bNd85QFmDNlU,3932
4
4
  source_github/constants.py,sha256=Hj3Q4y7OoU-Iff4m9gEC2CjwmWJYXhNbHVNjg8EBLmQ,238
@@ -56,9 +56,9 @@ source_github/schemas/workflow_runs.json,sha256=XDmIsjtzka-ItEonImD3ZATZjxRNkbFo
56
56
  source_github/schemas/workflows.json,sha256=gSNw8WZaVKbX4AL97PbjZHzvxcOltXqv9Ao1RNQOFXM,1470
57
57
  source_github/source.py,sha256=rY85d7X_StM0_GYIRYwnvoGQcsbNA_ZtdRnNJdh9-lk,14588
58
58
  source_github/spec.json,sha256=7LOQm01fP_RvPF-HifhNPJ7i0AxT2LTNPaLAA3uOfNY,7443
59
- source_github/streams.py,sha256=OusqYGwY9W6Qqraklh_fQhK7BErbonqvd9T45oFhAMQ,78578
59
+ source_github/streams.py,sha256=Y-4aThMwJWfInzntUCLvdk8JbspE0kBz6jLp94z81vM,78574
60
60
  source_github/utils.py,sha256=1mKZzLEaDe0m8BTw8Y-MxCXrJr1bZfaLPeSUbPN3vyQ,7243
61
- airbyte_source_github-2.0.0.dist-info/METADATA,sha256=bLTAHwsKu5MytzBF6owGTDUKajHfBjotZaZ1MvFPRY4,5196
62
- airbyte_source_github-2.0.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
63
- airbyte_source_github-2.0.0.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
64
- airbyte_source_github-2.0.0.dist-info/RECORD,,
61
+ airbyte_source_github-2.1.0.dist-info/METADATA,sha256=yM5ZRFKHBFtM5Yks7oSCTyubima-TE8URXBUD23pOH8,5298
62
+ airbyte_source_github-2.1.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
63
+ airbyte_source_github-2.1.0.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
64
+ airbyte_source_github-2.1.0.dist-info/RECORD,,
source_github/__init__.py CHANGED
@@ -24,4 +24,5 @@ SOFTWARE.
24
24
 
25
25
  from .source import SourceGithub
26
26
 
27
+
27
28
  __all__ = ["SourceGithub"]
source_github/streams.py CHANGED
@@ -1685,7 +1685,7 @@ class ContributorActivity(GithubStream):
1685
1685
  type=MessageType.LOG,
1686
1686
  log=AirbyteLogMessage(
1687
1687
  level=Level.INFO,
1688
- message=f"Syncing `{self.__class__.__name__}` " f"stream isn't available for repository `{repository}`.",
1688
+ message=f"Syncing `{self.__class__.__name__}` stream isn't available for repository `{repository}`.",
1689
1689
  ),
1690
1690
  )
1691
1691