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.
Files changed (35) hide show
  1. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/PKG-INFO +3 -2
  2. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/pyproject.toml +4 -4
  3. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/constants.py +1 -0
  4. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/PKG-INFO +3 -2
  5. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/requires.txt +3 -1
  6. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/LICENSE +0 -0
  7. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/README.md +0 -0
  8. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/setup.cfg +0 -0
  9. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/__init__.py +0 -0
  10. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/_internal_init.py +0 -0
  11. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/add.py +0 -0
  12. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/base.py +0 -0
  13. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/exceptions.py +0 -0
  14. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/__init__.py +0 -0
  15. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/_internal_init.py +0 -0
  16. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/add.py +0 -0
  17. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/base.py +0 -0
  18. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/constants.py +0 -0
  19. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/exceptions.py +0 -0
  20. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/impl/__init__.py +0 -0
  21. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/impl/simple.py +0 -0
  22. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/ls_tree.py +0 -0
  23. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/runner/__init__.py +0 -0
  24. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/runner/base.py +0 -0
  25. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/runner/simple_impl.py +0 -0
  26. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/git_subprocess/utils.py +0 -0
  27. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/ls_tree.py +0 -0
  28. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/models.py +0 -0
  29. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/py.typed +0 -0
  30. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/pytest_plugin.py +0 -0
  31. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt/utils.py +0 -0
  32. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/SOURCES.txt +0 -0
  33. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/dependency_links.txt +0 -0
  34. {gitbolt-0.0.0.dev6 → gitbolt-0.0.0.dev8}/src/gitbolt.egg-info/entry_points.txt +0 -0
  35. {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.dev6
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.0dev6"
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
 
@@ -9,3 +9,4 @@ from pathlib import Path
9
9
 
10
10
  GIT_DIR_STR = ".git"
11
11
  GIT_DIR = Path(GIT_DIR_STR)
12
+ GIT_DEFAULT_BRANCH_CONFIG_KEY = "init.defaultbranch"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitbolt
3
- Version: 0.0.0.dev6
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,5 +1,7 @@
1
1
  vt-err-hndlr==0.0.0dev1
2
- pytest
3
2
 
4
3
  [pygit2]
5
4
  pygit2
5
+
6
+ [test]
7
+ pytest
File without changes
File without changes
File without changes