kdebug 0.6.9__tar.gz → 0.6.10__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.
- {kdebug-0.6.9 → kdebug-0.6.10}/PKG-INFO +2 -2
- {kdebug-0.6.9 → kdebug-0.6.10}/pyproject.toml +4 -7
- {kdebug-0.6.9 → kdebug-0.6.10}/.gitignore +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/README.md +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/__init__.py +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/backup.py +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/cli.py +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/completions/__init__.py +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/completions/_kdebug +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/completions/kdebug.bash +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/completions/kdebug.fish +0 -0
- {kdebug-0.6.9 → kdebug-0.6.10}/src/kdebug/debug.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kdebug
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.10
|
|
4
4
|
Summary: TUI for Kubernetes Debug Containers
|
|
5
5
|
Project-URL: Homepage, https://github.com/jessegoodier/kdebug
|
|
6
6
|
Project-URL: Repository, https://github.com/jessegoodier/kdebug
|
|
@@ -13,7 +13,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
13
13
|
Classifier: Operating System :: MacOS
|
|
14
14
|
Classifier: Operating System :: POSIX :: Linux
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Requires-Python: >=3.
|
|
16
|
+
Requires-Python: >=3.12
|
|
17
17
|
Requires-Dist: rich>=14.0
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "kdebug"
|
|
7
|
-
version = "0.6.
|
|
7
|
+
version = "0.6.10"
|
|
8
8
|
description = "TUI for Kubernetes Debug Containers"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.12"
|
|
12
12
|
authors = [{ name = "Jesse Goodier" }]
|
|
13
13
|
keywords = ["kubernetes", "debug", "kubectl", "cli"]
|
|
14
14
|
dependencies = ["rich>=14.0"]
|
|
@@ -36,16 +36,13 @@ include = ["src/kdebug"]
|
|
|
36
36
|
|
|
37
37
|
[dependency-groups]
|
|
38
38
|
dev = [
|
|
39
|
-
"pytest>=
|
|
40
|
-
"ruff>=0.15",
|
|
39
|
+
"pytest>=9.1.1",
|
|
40
|
+
"ruff>=0.15.18",
|
|
41
41
|
]
|
|
42
42
|
|
|
43
43
|
[tool.pytest.ini_options]
|
|
44
44
|
testpaths = ["tests"]
|
|
45
45
|
|
|
46
|
-
[tool.ruff]
|
|
47
|
-
target-version = "py39"
|
|
48
|
-
|
|
49
46
|
[tool.ruff.lint]
|
|
50
47
|
select = ["E", "F", "I", "W"]
|
|
51
48
|
ignore = ["E501"]
|
|
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
|