github-bot-api 0.7.1__tar.gz → 0.7.12__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.
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/PKG-INFO +3 -3
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/pyproject.toml +5 -5
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/__init__.py +1 -1
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/LICENSE +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/README.md +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/app.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/app_test.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/event.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/flask.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/py.typed +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/signature.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/tests/test_import.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/token.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/__init__.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/functions.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/mime.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/types.py +0 -0
- {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/webhook.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: github-bot-api
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.12
|
|
4
4
|
Summary: API for creating GitHub bots and webhooks in Python.
|
|
5
5
|
Author-Email: Niklas Rosenstein <rosensteinniklas@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,11 +15,11 @@ Project-URL: Bug Tracker, https://github.com/NiklasRosenstein/python-github-bot-
|
|
|
15
15
|
Project-URL: Documentation, https://niklasrosenstein.github.io/python-github-bot-api/
|
|
16
16
|
Project-URL: Repository, https://github.com/NiklasRosenstein/python-github-bot-api
|
|
17
17
|
Requires-Python: <4.0,>=3.10
|
|
18
|
-
Requires-Dist: cryptography
|
|
18
|
+
Requires-Dist: cryptography>=44.0.0
|
|
19
19
|
Requires-Dist: pygithub>=2.5.0
|
|
20
20
|
Requires-Dist: PyJWT<3.0.0,>=2.6.0
|
|
21
21
|
Requires-Dist: requests<3.0.0,>=2.28.2
|
|
22
|
-
Requires-Dist: urllib3
|
|
22
|
+
Requires-Dist: urllib3>=2.6.3
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
25
|
<h1 align="center">python-github-bot-api</h1>
|
|
@@ -10,14 +10,14 @@ authors = [
|
|
|
10
10
|
]
|
|
11
11
|
requires-python = "<4.0,>=3.10"
|
|
12
12
|
dependencies = [
|
|
13
|
-
"cryptography
|
|
13
|
+
"cryptography>=44.0.0",
|
|
14
14
|
"pygithub>=2.5.0",
|
|
15
|
-
"PyJWT
|
|
16
|
-
"requests
|
|
17
|
-
"urllib3
|
|
15
|
+
"PyJWT>=2.6.0,<3.0.0",
|
|
16
|
+
"requests>=2.28.2,<3.0.0",
|
|
17
|
+
"urllib3>=2.6.3",
|
|
18
18
|
]
|
|
19
19
|
name = "github-bot-api"
|
|
20
|
-
version = "0.7.
|
|
20
|
+
version = "0.7.12"
|
|
21
21
|
description = "API for creating GitHub bots and webhooks in Python."
|
|
22
22
|
readme = "README.md"
|
|
23
23
|
classifiers = [
|
|
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
|
|
File without changes
|
|
File without changes
|