imbi-plugin-github 2.11.4__tar.gz → 2.11.5__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.11.4 → imbi_plugin_github-2.11.5}/PKG-INFO +2 -2
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/pyproject.toml +3 -3
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/uv.lock +6 -6
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/.github/workflows/publish.yml +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/.github/workflows/test.yml +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/.gitignore +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/.pre-commit-config.yaml +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/CLAUDE.md +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/LICENSE +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/README.md +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/justfile +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/__init__.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/_app_auth.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/_hosts.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/_repos.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/commits.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/deployment.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/identity.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/lifecycle.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/pull_requests.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/tests/__init__.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/tests/test_commits.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/tests/test_deployment.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/tests/test_hosts.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/tests/test_identity.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/tests/test_lifecycle.py +0 -0
- {imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/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.11.
|
|
3
|
+
Version: 2.11.5
|
|
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.11.
|
|
16
|
+
Requires-Dist: imbi-common[databases]==2.11.5
|
|
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.11.
|
|
3
|
+
version = "2.11.5"
|
|
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.11.
|
|
19
|
+
"imbi-common[databases]==2.11.5",
|
|
20
20
|
"pydantic>=2",
|
|
21
21
|
"pyjwt[crypto]>=2.8",
|
|
22
22
|
]
|
|
@@ -38,7 +38,7 @@ github-pr-sync = "imbi_plugin_github.pull_requests:GitHubPRSyncPlugin"
|
|
|
38
38
|
dev = [
|
|
39
39
|
"basedpyright",
|
|
40
40
|
"coverage[toml]",
|
|
41
|
-
"imbi-common[server,databases]==2.11.
|
|
41
|
+
"imbi-common[server,databases]==2.11.5",
|
|
42
42
|
"pre-commit",
|
|
43
43
|
"pytest",
|
|
44
44
|
"pytest-asyncio",
|
|
@@ -667,7 +667,7 @@ wheels = [
|
|
|
667
667
|
|
|
668
668
|
[[package]]
|
|
669
669
|
name = "imbi-common"
|
|
670
|
-
version = "2.11.
|
|
670
|
+
version = "2.11.5"
|
|
671
671
|
source = { registry = "https://pypi.org/simple" }
|
|
672
672
|
dependencies = [
|
|
673
673
|
{ name = "cryptography" },
|
|
@@ -683,9 +683,9 @@ dependencies = [
|
|
|
683
683
|
{ name = "python-slugify" },
|
|
684
684
|
{ name = "typer" },
|
|
685
685
|
]
|
|
686
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
686
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8a/46/bdf7e04755239b46f003327d7474ca93083c2b083591929f8fb3b15a1ab6/imbi_common-2.11.5.tar.gz", hash = "sha256:09b453fefe9916cfb7292a0e43a2997b6aeec2663478e217841c79d114415582", size = 349523, upload-time = "2026-06-12T18:03:17.891Z" }
|
|
687
687
|
wheels = [
|
|
688
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
688
|
+
{ url = "https://files.pythonhosted.org/packages/36/cf/e449133065933322bb8c7970f2905e66cb7680d6bd322f76caa816511979/imbi_common-2.11.5-py3-none-any.whl", hash = "sha256:df895c9698bd00ead82dc457cddcfb71bbf12872b04e87420e663f4e16955fba", size = 113174, upload-time = "2026-06-12T18:03:16.341Z" },
|
|
689
689
|
]
|
|
690
690
|
|
|
691
691
|
[package.optional-dependencies]
|
|
@@ -703,7 +703,7 @@ server = [
|
|
|
703
703
|
|
|
704
704
|
[[package]]
|
|
705
705
|
name = "imbi-plugin-github"
|
|
706
|
-
version = "2.11.
|
|
706
|
+
version = "2.11.5"
|
|
707
707
|
source = { editable = "." }
|
|
708
708
|
dependencies = [
|
|
709
709
|
{ name = "httpx" },
|
|
@@ -732,7 +732,7 @@ dist = [
|
|
|
732
732
|
[package.metadata]
|
|
733
733
|
requires-dist = [
|
|
734
734
|
{ name = "httpx", specifier = ">=0.27" },
|
|
735
|
-
{ name = "imbi-common", extras = ["databases"], specifier = "==2.11.
|
|
735
|
+
{ name = "imbi-common", extras = ["databases"], specifier = "==2.11.5" },
|
|
736
736
|
{ name = "pydantic", specifier = ">=2" },
|
|
737
737
|
{ name = "pyjwt", extras = ["crypto"], specifier = ">=2.8" },
|
|
738
738
|
]
|
|
@@ -741,7 +741,7 @@ requires-dist = [
|
|
|
741
741
|
dev = [
|
|
742
742
|
{ name = "basedpyright" },
|
|
743
743
|
{ name = "coverage", extras = ["toml"] },
|
|
744
|
-
{ name = "imbi-common", extras = ["server", "databases"], specifier = "==2.11.
|
|
744
|
+
{ name = "imbi-common", extras = ["server", "databases"], specifier = "==2.11.5" },
|
|
745
745
|
{ name = "pre-commit" },
|
|
746
746
|
{ name = "pytest" },
|
|
747
747
|
{ name = "pytest-asyncio" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/deployment.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{imbi_plugin_github-2.11.4 → imbi_plugin_github-2.11.5}/src/imbi_plugin_github/pull_requests.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|