iaptoolkit 0.3.8__tar.gz → 0.3.9__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.
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/PKG-INFO +3 -3
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/pyproject.toml +3 -3
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/LICENSE +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/README.md +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/__init__.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/constants.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/exceptions.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/headers.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/tokens/__init__.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/tokens/service_account.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/tokens/structs.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/tokens/token_datastore.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/utils/__init__.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/utils/urls.py +0 -0
- {iaptoolkit-0.3.8 → iaptoolkit-0.3.9}/src/iaptoolkit/utils/verify.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: iaptoolkit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: Library of common utils for interacting with Identity-Aware Proxies
|
|
5
5
|
Author: Rob Voigt
|
|
6
6
|
Author-email: code@ravoigt.com
|
|
@@ -10,8 +10,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.13
|
|
12
12
|
Requires-Dist: google-auth (>=2.29.0,<3.0.0)
|
|
13
|
-
Requires-Dist: kvcommon[k8s] (>=0.4.
|
|
14
|
-
Requires-Dist: requests (>=2.
|
|
13
|
+
Requires-Dist: kvcommon[k8s] (>=0.4.1,<0.5.0)
|
|
14
|
+
Requires-Dist: requests (>=2.32.4)
|
|
15
15
|
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
|
16
16
|
Project-URL: Homepage, https://github.com/RAVoigt/iaptoolkit
|
|
17
17
|
Project-URL: Repository, https://github.com/RAVoigt/iaptoolkit
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "iaptoolkit"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.9"
|
|
4
4
|
description = "Library of common utils for interacting with Identity-Aware Proxies"
|
|
5
5
|
authors = ["Rob Voigt <code@ravoigt.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -23,9 +23,9 @@ include = '\.pyi?$'
|
|
|
23
23
|
[tool.poetry.dependencies]
|
|
24
24
|
python = "^3.11"
|
|
25
25
|
google-auth = "^2.29.0"
|
|
26
|
-
requests = "
|
|
26
|
+
requests = ">=2.32.4"
|
|
27
27
|
toml = "^0.10.2"
|
|
28
|
-
kvcommon = {extras = ["k8s"], version = "^0.4.
|
|
28
|
+
kvcommon = {extras = ["k8s"], version = "^0.4.1"}
|
|
29
29
|
|
|
30
30
|
[tool.poetry.group.dev.dependencies]
|
|
31
31
|
black = "*"
|
|
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
|