GitPython 3.1.44__tar.gz → 3.1.46__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 (70) hide show
  1. {gitpython-3.1.44 → gitpython-3.1.46}/AUTHORS +1 -0
  2. {gitpython-3.1.44 → gitpython-3.1.46/GitPython.egg-info}/PKG-INFO +16 -5
  3. {gitpython-3.1.44 → gitpython-3.1.46}/GitPython.egg-info/requires.txt +5 -3
  4. {gitpython-3.1.44/GitPython.egg-info → gitpython-3.1.46}/PKG-INFO +16 -5
  5. gitpython-3.1.46/VERSION +1 -0
  6. {gitpython-3.1.44 → gitpython-3.1.46}/doc/Makefile +1 -1
  7. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/changes.rst +26 -14
  8. {gitpython-3.1.44 → gitpython-3.1.46}/git/__init__.py +1 -1
  9. {gitpython-3.1.44 → gitpython-3.1.46}/git/cmd.py +239 -222
  10. {gitpython-3.1.44 → gitpython-3.1.46}/git/config.py +26 -17
  11. {gitpython-3.1.44 → gitpython-3.1.46}/git/diff.py +3 -2
  12. {gitpython-3.1.44 → gitpython-3.1.46}/git/index/base.py +29 -15
  13. {gitpython-3.1.44 → gitpython-3.1.46}/git/index/fun.py +12 -6
  14. {gitpython-3.1.44 → gitpython-3.1.46}/git/index/typ.py +16 -3
  15. {gitpython-3.1.44 → gitpython-3.1.46}/git/index/util.py +2 -2
  16. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/base.py +2 -2
  17. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/blob.py +2 -1
  18. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/commit.py +3 -3
  19. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/submodule/base.py +14 -4
  20. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/tree.py +7 -3
  21. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/head.py +1 -5
  22. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/log.py +2 -2
  23. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/reference.py +2 -1
  24. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/symbolic.py +39 -31
  25. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/tag.py +4 -4
  26. {gitpython-3.1.44 → gitpython-3.1.46}/git/repo/base.py +35 -38
  27. {gitpython-3.1.44 → gitpython-3.1.46}/git/repo/fun.py +9 -3
  28. {gitpython-3.1.44 → gitpython-3.1.46}/git/types.py +2 -2
  29. {gitpython-3.1.44 → gitpython-3.1.46}/git/util.py +24 -20
  30. {gitpython-3.1.44 → gitpython-3.1.46}/pyproject.toml +5 -8
  31. gitpython-3.1.46/requirements.txt +2 -0
  32. {gitpython-3.1.44 → gitpython-3.1.46}/setup.py +0 -1
  33. {gitpython-3.1.44 → gitpython-3.1.46}/test-requirements.txt +1 -1
  34. gitpython-3.1.44/VERSION +0 -1
  35. gitpython-3.1.44/requirements.txt +0 -2
  36. {gitpython-3.1.44 → gitpython-3.1.46}/CHANGES +0 -0
  37. {gitpython-3.1.44 → gitpython-3.1.46}/CONTRIBUTING.md +0 -0
  38. {gitpython-3.1.44 → gitpython-3.1.46}/GitPython.egg-info/SOURCES.txt +0 -0
  39. {gitpython-3.1.44 → gitpython-3.1.46}/GitPython.egg-info/dependency_links.txt +0 -0
  40. {gitpython-3.1.44 → gitpython-3.1.46}/GitPython.egg-info/not-zip-safe +0 -0
  41. {gitpython-3.1.44 → gitpython-3.1.46}/GitPython.egg-info/top_level.txt +0 -0
  42. {gitpython-3.1.44 → gitpython-3.1.46}/LICENSE +0 -0
  43. {gitpython-3.1.44 → gitpython-3.1.46}/MANIFEST.in +0 -0
  44. {gitpython-3.1.44 → gitpython-3.1.46}/README.md +0 -0
  45. {gitpython-3.1.44 → gitpython-3.1.46}/doc/.gitignore +0 -0
  46. {gitpython-3.1.44 → gitpython-3.1.46}/doc/requirements.txt +0 -0
  47. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/conf.py +0 -0
  48. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/index.rst +0 -0
  49. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/intro.rst +0 -0
  50. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/quickstart.rst +0 -0
  51. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/reference.rst +0 -0
  52. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/roadmap.rst +0 -0
  53. {gitpython-3.1.44 → gitpython-3.1.46}/doc/source/tutorial.rst +0 -0
  54. {gitpython-3.1.44 → gitpython-3.1.46}/git/compat.py +0 -0
  55. {gitpython-3.1.44 → gitpython-3.1.46}/git/db.py +0 -0
  56. {gitpython-3.1.44 → gitpython-3.1.46}/git/exc.py +0 -0
  57. {gitpython-3.1.44 → gitpython-3.1.46}/git/index/__init__.py +0 -0
  58. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/__init__.py +0 -0
  59. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/fun.py +0 -0
  60. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/submodule/__init__.py +0 -0
  61. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/submodule/root.py +0 -0
  62. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/submodule/util.py +0 -0
  63. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/tag.py +0 -0
  64. {gitpython-3.1.44 → gitpython-3.1.46}/git/objects/util.py +0 -0
  65. {gitpython-3.1.44 → gitpython-3.1.46}/git/py.typed +0 -0
  66. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/__init__.py +0 -0
  67. {gitpython-3.1.44 → gitpython-3.1.46}/git/refs/remote.py +0 -0
  68. {gitpython-3.1.44 → gitpython-3.1.46}/git/remote.py +0 -0
  69. {gitpython-3.1.44 → gitpython-3.1.46}/git/repo/__init__.py +0 -0
  70. {gitpython-3.1.44 → gitpython-3.1.46}/setup.cfg +0 -0
@@ -55,5 +55,6 @@ Contributors are:
55
55
  -Eliah Kagan <eliah.kagan _at_ gmail.com>
56
56
  -Ethan Lin <et.repositories _at_ gmail.com>
57
57
  -Jonas Scharpf <jonas.scharpf _at_ checkmk.com>
58
+ -Gordon Marx
58
59
 
59
60
  Portions derived from other open source works and are clearly marked.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: GitPython
3
- Version: 3.1.44
3
+ Version: 3.1.46
4
4
  Summary: GitPython is a Python library used to interact with Git repositories
5
5
  Home-page: https://github.com/gitpython-developers/GitPython
6
6
  Author: Sebastian Thiel, Michael Trier
@@ -9,7 +9,6 @@ License: BSD-3-Clause
9
9
  Classifier: Development Status :: 5 - Production/Stable
10
10
  Classifier: Environment :: Console
11
11
  Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: BSD License
13
12
  Classifier: Operating System :: OS Independent
14
13
  Classifier: Operating System :: POSIX
15
14
  Classifier: Operating System :: Microsoft :: Windows
@@ -28,12 +27,12 @@ Description-Content-Type: text/markdown
28
27
  License-File: LICENSE
29
28
  License-File: AUTHORS
30
29
  Requires-Dist: gitdb<5,>=4.0.1
31
- Requires-Dist: typing-extensions>=3.7.4.3; python_version < "3.8"
30
+ Requires-Dist: typing-extensions>=3.10.0.2; python_version < "3.10"
32
31
  Provides-Extra: test
33
32
  Requires-Dist: coverage[toml]; extra == "test"
34
33
  Requires-Dist: ddt!=1.4.3,>=1.1.1; extra == "test"
35
34
  Requires-Dist: mock; python_version < "3.8" and extra == "test"
36
- Requires-Dist: mypy; extra == "test"
35
+ Requires-Dist: mypy==1.18.2; python_version >= "3.9" and extra == "test"
37
36
  Requires-Dist: pre-commit; extra == "test"
38
37
  Requires-Dist: pytest>=7.3.1; extra == "test"
39
38
  Requires-Dist: pytest-cov; extra == "test"
@@ -45,6 +44,18 @@ Provides-Extra: doc
45
44
  Requires-Dist: sphinx<7.2,>=7.1.2; extra == "doc"
46
45
  Requires-Dist: sphinx_rtd_theme; extra == "doc"
47
46
  Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
47
+ Dynamic: author
48
+ Dynamic: author-email
49
+ Dynamic: classifier
50
+ Dynamic: description
51
+ Dynamic: description-content-type
52
+ Dynamic: home-page
53
+ Dynamic: license
54
+ Dynamic: license-file
55
+ Dynamic: provides-extra
56
+ Dynamic: requires-dist
57
+ Dynamic: requires-python
58
+ Dynamic: summary
48
59
 
49
60
  ![Python package](https://github.com/gitpython-developers/GitPython/workflows/Python%20package/badge.svg)
50
61
  [![Documentation Status](https://readthedocs.org/projects/gitpython/badge/?version=stable)](https://readthedocs.org/projects/gitpython/?badge=stable)
@@ -1,7 +1,7 @@
1
1
  gitdb<5,>=4.0.1
2
2
 
3
- [:python_version < "3.8"]
4
- typing-extensions>=3.7.4.3
3
+ [:python_version < "3.10"]
4
+ typing-extensions>=3.10.0.2
5
5
 
6
6
  [doc]
7
7
  sphinx<7.2,>=7.1.2
@@ -11,7 +11,6 @@ sphinx-autodoc-typehints
11
11
  [test]
12
12
  coverage[toml]
13
13
  ddt!=1.4.3,>=1.1.1
14
- mypy
15
14
  pre-commit
16
15
  pytest>=7.3.1
17
16
  pytest-cov
@@ -24,3 +23,6 @@ typing-extensions
24
23
 
25
24
  [test:python_version < "3.8"]
26
25
  mock
26
+
27
+ [test:python_version >= "3.9"]
28
+ mypy==1.18.2
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: GitPython
3
- Version: 3.1.44
3
+ Version: 3.1.46
4
4
  Summary: GitPython is a Python library used to interact with Git repositories
5
5
  Home-page: https://github.com/gitpython-developers/GitPython
6
6
  Author: Sebastian Thiel, Michael Trier
@@ -9,7 +9,6 @@ License: BSD-3-Clause
9
9
  Classifier: Development Status :: 5 - Production/Stable
10
10
  Classifier: Environment :: Console
11
11
  Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: BSD License
13
12
  Classifier: Operating System :: OS Independent
14
13
  Classifier: Operating System :: POSIX
15
14
  Classifier: Operating System :: Microsoft :: Windows
@@ -28,12 +27,12 @@ Description-Content-Type: text/markdown
28
27
  License-File: LICENSE
29
28
  License-File: AUTHORS
30
29
  Requires-Dist: gitdb<5,>=4.0.1
31
- Requires-Dist: typing-extensions>=3.7.4.3; python_version < "3.8"
30
+ Requires-Dist: typing-extensions>=3.10.0.2; python_version < "3.10"
32
31
  Provides-Extra: test
33
32
  Requires-Dist: coverage[toml]; extra == "test"
34
33
  Requires-Dist: ddt!=1.4.3,>=1.1.1; extra == "test"
35
34
  Requires-Dist: mock; python_version < "3.8" and extra == "test"
36
- Requires-Dist: mypy; extra == "test"
35
+ Requires-Dist: mypy==1.18.2; python_version >= "3.9" and extra == "test"
37
36
  Requires-Dist: pre-commit; extra == "test"
38
37
  Requires-Dist: pytest>=7.3.1; extra == "test"
39
38
  Requires-Dist: pytest-cov; extra == "test"
@@ -45,6 +44,18 @@ Provides-Extra: doc
45
44
  Requires-Dist: sphinx<7.2,>=7.1.2; extra == "doc"
46
45
  Requires-Dist: sphinx_rtd_theme; extra == "doc"
47
46
  Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
47
+ Dynamic: author
48
+ Dynamic: author-email
49
+ Dynamic: classifier
50
+ Dynamic: description
51
+ Dynamic: description-content-type
52
+ Dynamic: home-page
53
+ Dynamic: license
54
+ Dynamic: license-file
55
+ Dynamic: provides-extra
56
+ Dynamic: requires-dist
57
+ Dynamic: requires-python
58
+ Dynamic: summary
48
59
 
49
60
  ![Python package](https://github.com/gitpython-developers/GitPython/workflows/Python%20package/badge.svg)
50
61
  [![Documentation Status](https://readthedocs.org/projects/gitpython/badge/?version=stable)](https://readthedocs.org/projects/gitpython/?badge=stable)
@@ -0,0 +1 @@
1
+ 3.1.46
@@ -3,7 +3,7 @@
3
3
 
4
4
  # You can set these variables from the command line.
5
5
  BUILDDIR = build
6
- SPHINXOPTS = -W
6
+ SPHINXOPTS =
7
7
  SPHINXBUILD = sphinx-build
8
8
  PAPER =
9
9
 
@@ -2,6 +2,18 @@
2
2
  Changelog
3
3
  =========
4
4
 
5
+ 3.1.46
6
+ ======
7
+
8
+ See the following for all changes.
9
+ https://github.com/gitpython-developers/GitPython/releases/tag/3.1.46
10
+
11
+ 3.1.45
12
+ ======
13
+
14
+ See the following for all changes.
15
+ https://github.com/gitpython-developers/GitPython/releases/tag/3.1.45
16
+
5
17
  3.1.44
6
18
  ======
7
19
 
@@ -105,7 +117,7 @@ https://github.com/gitpython-developers/gitpython/milestone/61?closed=1
105
117
  but a necessary fix for https://github.com/gitpython-developers/GitPython/issues/1515.
106
118
  Please take a look at the PR for more information and how to bypass these protections
107
119
  in case they cause breakage: https://github.com/gitpython-developers/GitPython/pull/1521.
108
-
120
+
109
121
 
110
122
  See the following for all changes.
111
123
  https://github.com/gitpython-developers/gitpython/milestone/60?closed=1
@@ -170,38 +182,38 @@ https://github.com/gitpython-developers/gitpython/milestone/53?closed=1
170
182
  * General:
171
183
 
172
184
  - Remove python 3.6 support
173
-
185
+
174
186
  - Remove distutils ahead of deprecation in standard library.
175
-
187
+
176
188
  - Update sphinx to 4.1.12 and use autodoc-typehints.
177
-
189
+
178
190
  - Include README as long_description on PyPI
179
-
191
+
180
192
  - Test against earliest and latest minor version available on Github Actions (e.g. 3.9.0 and 3.9.7)
181
-
193
+
182
194
 
183
195
  * Typing:
184
196
 
185
197
  - Add types to ALL functions.
186
-
198
+
187
199
  - Ensure py.typed is collected.
188
-
200
+
189
201
  - Increase mypy strictness with disallow_untyped_defs, warn_redundant_casts, warn_unreachable.
190
-
202
+
191
203
  - Use typing.NamedTuple and typing.OrderedDict now 3.6 dropped.
192
-
204
+
193
205
  - Make Protocol classes ABCs at runtime due to new behaviour/bug in 3.9.7 & 3.10.0-rc1
194
-
206
+
195
207
  - Remove use of typing.TypeGuard until later release, to allow dependent libs time to update.
196
-
208
+
197
209
  - Tracking issue: https://github.com/gitpython-developers/GitPython/issues/1095
198
210
 
199
211
  * Runtime improvements:
200
212
 
201
213
  - Add clone_multi_options support to submodule.add()
202
-
214
+
203
215
  - Delay calling get_user_id() unless essential, to support sand-boxed environments.
204
-
216
+
205
217
  - Add timeout to handle_process_output(), in case thread.join() hangs.
206
218
 
207
219
  See the following for details:
@@ -86,7 +86,7 @@ __all__ = [
86
86
  "to_hex_sha",
87
87
  ]
88
88
 
89
- __version__ = '3.1.44'
89
+ __version__ = '3.1.46'
90
90
 
91
91
  from typing import Any, List, Optional, Sequence, TYPE_CHECKING, Tuple, Union
92
92