gitbolt 0.0.0.dev6__tar.gz → 0.0.0.dev8__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.
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/PKG-INFO +3 -2
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/pyproject.toml +4 -4
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/constants.py +1 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/PKG-INFO +3 -2
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/requires.txt +3 -1
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/LICENSE +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/README.md +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/setup.cfg +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/__init__.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/_internal_init.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/add.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/base.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/exceptions.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/__init__.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/_internal_init.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/add.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/base.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/constants.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/exceptions.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/impl/__init__.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/impl/simple.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/ls_tree.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/runner/__init__.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/runner/base.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/runner/simple_impl.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/utils.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/ls_tree.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/models.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/py.typed +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/pytest_plugin.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/utils.py +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/SOURCES.txt +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/dependency_links.txt +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/entry_points.txt +0 -0
- {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitbolt
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev8
|
|
4
4
|
Summary: Fast, flexible and type-safe Git commands in Python.
|
|
5
5
|
Author-email: Suhas Krishna Srivastava <suhas.srivastava@vaastav.tech>
|
|
6
6
|
Maintainer-email: Suhas Krishna Srivastava <suhas.srivastava@vaastav.tech>
|
|
@@ -27,9 +27,10 @@ Requires-Python: >=3.12
|
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
License-File: LICENSE
|
|
29
29
|
Requires-Dist: vt-err-hndlr==0.0.0dev1
|
|
30
|
-
Requires-Dist: pytest
|
|
31
30
|
Provides-Extra: pygit2
|
|
32
31
|
Requires-Dist: pygit2; extra == "pygit2"
|
|
32
|
+
Provides-Extra: test
|
|
33
|
+
Requires-Dist: pytest; extra == "test"
|
|
33
34
|
Dynamic: license-file
|
|
34
35
|
|
|
35
36
|
# 🚀 Gitbolt
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "gitbolt"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.0dev8"
|
|
4
4
|
description = "Fast, flexible and type-safe Git commands in Python."
|
|
5
5
|
requires-python = ">=3.12"
|
|
6
6
|
readme = "README.md"
|
|
@@ -36,19 +36,19 @@ classifiers = [
|
|
|
36
36
|
"Typing :: Typed"
|
|
37
37
|
]
|
|
38
38
|
dependencies = [
|
|
39
|
-
"vt-err-hndlr == 0.0.0dev1"
|
|
40
|
-
"pytest"
|
|
39
|
+
"vt-err-hndlr == 0.0.0dev1"
|
|
41
40
|
]
|
|
42
41
|
|
|
43
42
|
[project.optional-dependencies]
|
|
44
43
|
pygit2 = ['pygit2']
|
|
44
|
+
test = ['pytest']
|
|
45
45
|
|
|
46
46
|
[dependency-groups]
|
|
47
47
|
# TODO: report the mypy recent version (1.16.0, 1.16.1 issue) RuntimeError: ('Not implemented', <class 'mypy.types.TypeGuardedType'>)
|
|
48
48
|
# btw, this error doesn't show in the latest developer version. So, this error will go away with 1.17.0 relase
|
|
49
49
|
dev = ["mypy==1.15.0", "ruff"]
|
|
50
50
|
doc = ['sphinx', 'sphinx-argparse']
|
|
51
|
-
test = ['pytest-cov']
|
|
51
|
+
test = ["pytest", 'pytest-cov']
|
|
52
52
|
multitest = ['tox']
|
|
53
53
|
|
|
54
54
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitbolt
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev8
|
|
4
4
|
Summary: Fast, flexible and type-safe Git commands in Python.
|
|
5
5
|
Author-email: Suhas Krishna Srivastava <suhas.srivastava@vaastav.tech>
|
|
6
6
|
Maintainer-email: Suhas Krishna Srivastava <suhas.srivastava@vaastav.tech>
|
|
@@ -27,9 +27,10 @@ Requires-Python: >=3.12
|
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
License-File: LICENSE
|
|
29
29
|
Requires-Dist: vt-err-hndlr==0.0.0dev1
|
|
30
|
-
Requires-Dist: pytest
|
|
31
30
|
Provides-Extra: pygit2
|
|
32
31
|
Requires-Dist: pygit2; extra == "pygit2"
|
|
32
|
+
Provides-Extra: test
|
|
33
|
+
Requires-Dist: pytest; extra == "test"
|
|
33
34
|
Dynamic: license-file
|
|
34
35
|
|
|
35
36
|
# 🚀 Gitbolt
|
|
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
|
|
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
|