imbi-plugin-github 2.9.3__tar.gz → 2.11.0__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.
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/PKG-INFO +2 -2
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/pyproject.toml +3 -3
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/commits.py +644 -77
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/deployment.py +7 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/test_commits.py +807 -41
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/test_deployment.py +6 -0
- imbi_plugin_github-2.11.0/uv.lock +2024 -0
- imbi_plugin_github-2.9.3/uv.lock +0 -2024
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/.github/workflows/publish.yml +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/.github/workflows/test.yml +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/.gitignore +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/.pre-commit-config.yaml +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/CLAUDE.md +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/LICENSE +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/README.md +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/justfile +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/__init__.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/_app_auth.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/_hosts.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/_repos.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/identity.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/src/imbi_plugin_github/lifecycle.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/__init__.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/test_hosts.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/test_identity.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/test_lifecycle.py +0 -0
- {imbi_plugin_github-2.9.3 → imbi_plugin_github-2.11.0}/tests/test_repos.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: imbi-plugin-github
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.11.0
|
|
4
4
|
Summary: GitHub identity plugin for Imbi (github.com / GHEC / GHES)
|
|
5
5
|
Author-email: "Gavin M. Roy" <gavinr@aweber.com>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.14
|
|
14
14
|
Requires-Python: >=3.14
|
|
15
15
|
Requires-Dist: httpx>=0.27
|
|
16
|
-
Requires-Dist: imbi-common[databases]==2.
|
|
16
|
+
Requires-Dist: imbi-common[databases]==2.11.0
|
|
17
17
|
Requires-Dist: pydantic>=2
|
|
18
18
|
Requires-Dist: pyjwt[crypto]>=2.8
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "imbi-plugin-github"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.11.0"
|
|
4
4
|
description = "GitHub identity plugin for Imbi (github.com / GHEC / GHES)"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.14"
|
|
@@ -16,7 +16,7 @@ classifiers = [
|
|
|
16
16
|
]
|
|
17
17
|
dependencies = [
|
|
18
18
|
"httpx>=0.27",
|
|
19
|
-
"imbi-common[databases]==2.
|
|
19
|
+
"imbi-common[databases]==2.11.0",
|
|
20
20
|
"pydantic>=2",
|
|
21
21
|
"pyjwt[crypto]>=2.8",
|
|
22
22
|
]
|
|
@@ -37,7 +37,7 @@ github-commit-sync = "imbi_plugin_github.commits:GitHubCommitSyncPlugin"
|
|
|
37
37
|
dev = [
|
|
38
38
|
"basedpyright",
|
|
39
39
|
"coverage[toml]",
|
|
40
|
-
"imbi-common[server,databases]==2.
|
|
40
|
+
"imbi-common[server,databases]==2.11.0",
|
|
41
41
|
"pre-commit",
|
|
42
42
|
"pytest",
|
|
43
43
|
"pytest-asyncio",
|