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.
Files changed (18) hide show
  1. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/PKG-INFO +3 -3
  2. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/pyproject.toml +5 -5
  3. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/__init__.py +1 -1
  4. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/LICENSE +0 -0
  5. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/README.md +0 -0
  6. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/app.py +0 -0
  7. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/app_test.py +0 -0
  8. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/event.py +0 -0
  9. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/flask.py +0 -0
  10. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/py.typed +0 -0
  11. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/signature.py +0 -0
  12. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/tests/test_import.py +0 -0
  13. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/token.py +0 -0
  14. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/__init__.py +0 -0
  15. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/functions.py +0 -0
  16. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/mime.py +0 -0
  17. {github_bot_api-0.7.1 → github_bot_api-0.7.12}/src/github_bot_api/utils/types.py +0 -0
  18. {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.1
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<44.0.1,>=44.0.0
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<2.6.4,>=2.6.3
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<44.0.1,>=44.0.0",
13
+ "cryptography>=44.0.0",
14
14
  "pygithub>=2.5.0",
15
- "PyJWT<3.0.0,>=2.6.0",
16
- "requests<3.0.0,>=2.28.2",
17
- "urllib3<2.6.4,>=2.6.3",
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.1"
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 = [
@@ -1,5 +1,5 @@
1
1
  __author__ = "Niklas Rosenstein <nrosenstein@palantir.com>"
2
- __version__ = "0.7.1"
2
+ __version__ = "0.7.12"
3
3
 
4
4
  from .app import GithubApp
5
5
  from .event import Event, accept_event
File without changes