GitPython 3.1.43__tar.gz → 3.1.45__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 (71) hide show
  1. {GitPython-3.1.43 → gitpython-3.1.45}/AUTHORS +2 -0
  2. {GitPython-3.1.43 → gitpython-3.1.45}/CONTRIBUTING.md +5 -0
  3. {GitPython-3.1.43 → gitpython-3.1.45/GitPython.egg-info}/PKG-INFO +20 -11
  4. {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/requires.txt +3 -8
  5. {GitPython-3.1.43/GitPython.egg-info → gitpython-3.1.45}/PKG-INFO +20 -11
  6. {GitPython-3.1.43 → gitpython-3.1.45}/README.md +4 -1
  7. gitpython-3.1.45/VERSION +1 -0
  8. {GitPython-3.1.43 → gitpython-3.1.45}/doc/Makefile +1 -1
  9. gitpython-3.1.45/doc/requirements.txt +3 -0
  10. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/changes.rst +13 -1
  11. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/index.rst +0 -1
  12. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/intro.rst +0 -1
  13. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/roadmap.rst +0 -1
  14. {GitPython-3.1.43 → gitpython-3.1.45}/git/__init__.py +1 -1
  15. {GitPython-3.1.43 → gitpython-3.1.45}/git/cmd.py +240 -222
  16. {GitPython-3.1.43 → gitpython-3.1.45}/git/config.py +18 -11
  17. {GitPython-3.1.43 → gitpython-3.1.45}/git/diff.py +6 -6
  18. {GitPython-3.1.43 → gitpython-3.1.45}/git/index/base.py +34 -20
  19. {GitPython-3.1.43 → gitpython-3.1.45}/git/index/fun.py +1 -1
  20. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/base.py +2 -2
  21. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/commit.py +19 -9
  22. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/base.py +11 -1
  23. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/tag.py +2 -3
  24. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/tree.py +3 -1
  25. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/util.py +3 -3
  26. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/head.py +2 -2
  27. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/log.py +1 -1
  28. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/symbolic.py +24 -17
  29. {GitPython-3.1.43 → gitpython-3.1.45}/git/remote.py +14 -7
  30. {GitPython-3.1.43 → gitpython-3.1.45}/git/repo/base.py +43 -25
  31. {GitPython-3.1.43 → gitpython-3.1.45}/git/repo/fun.py +9 -3
  32. {GitPython-3.1.43 → gitpython-3.1.45}/git/types.py +1 -0
  33. {GitPython-3.1.43 → gitpython-3.1.45}/git/util.py +13 -7
  34. {GitPython-3.1.43 → gitpython-3.1.45}/pyproject.toml +15 -9
  35. gitpython-3.1.45/requirements.txt +2 -0
  36. {GitPython-3.1.43 → gitpython-3.1.45}/setup.py +0 -1
  37. GitPython-3.1.43/VERSION +0 -1
  38. GitPython-3.1.43/doc/requirements.txt +0 -8
  39. GitPython-3.1.43/requirements.txt +0 -2
  40. {GitPython-3.1.43 → gitpython-3.1.45}/CHANGES +0 -0
  41. {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/SOURCES.txt +0 -0
  42. {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/dependency_links.txt +0 -0
  43. {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/not-zip-safe +0 -0
  44. {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/top_level.txt +0 -0
  45. {GitPython-3.1.43 → gitpython-3.1.45}/LICENSE +0 -0
  46. {GitPython-3.1.43 → gitpython-3.1.45}/MANIFEST.in +0 -0
  47. {GitPython-3.1.43 → gitpython-3.1.45}/doc/.gitignore +0 -0
  48. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/conf.py +0 -0
  49. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/quickstart.rst +0 -0
  50. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/reference.rst +0 -0
  51. {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/tutorial.rst +0 -0
  52. {GitPython-3.1.43 → gitpython-3.1.45}/git/compat.py +0 -0
  53. {GitPython-3.1.43 → gitpython-3.1.45}/git/db.py +0 -0
  54. {GitPython-3.1.43 → gitpython-3.1.45}/git/exc.py +0 -0
  55. {GitPython-3.1.43 → gitpython-3.1.45}/git/index/__init__.py +0 -0
  56. {GitPython-3.1.43 → gitpython-3.1.45}/git/index/typ.py +0 -0
  57. {GitPython-3.1.43 → gitpython-3.1.45}/git/index/util.py +0 -0
  58. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/__init__.py +0 -0
  59. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/blob.py +0 -0
  60. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/fun.py +0 -0
  61. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/__init__.py +0 -0
  62. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/root.py +0 -0
  63. {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/util.py +0 -0
  64. {GitPython-3.1.43 → gitpython-3.1.45}/git/py.typed +0 -0
  65. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/__init__.py +0 -0
  66. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/reference.py +0 -0
  67. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/remote.py +0 -0
  68. {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/tag.py +0 -0
  69. {GitPython-3.1.43 → gitpython-3.1.45}/git/repo/__init__.py +0 -0
  70. {GitPython-3.1.43 → gitpython-3.1.45}/setup.cfg +0 -0
  71. {GitPython-3.1.43 → gitpython-3.1.45}/test-requirements.txt +0 -0
@@ -54,5 +54,7 @@ Contributors are:
54
54
  -Wenhan Zhu <wzhu.cosmos _at_ gmail.com>
55
55
  -Eliah Kagan <eliah.kagan _at_ gmail.com>
56
56
  -Ethan Lin <et.repositories _at_ gmail.com>
57
+ -Jonas Scharpf <jonas.scharpf _at_ checkmk.com>
58
+ -Gordon Marx
57
59
 
58
60
  Portions derived from other open source works and are clearly marked.
@@ -8,3 +8,8 @@ The following is a short step-by-step rundown of what one typically would do to
8
8
  - Try to avoid massive commits and prefer to take small steps, with one commit for each.
9
9
  - Feel free to add yourself to AUTHORS file.
10
10
  - Create a pull request.
11
+
12
+ ## Fuzzing Test Specific Documentation
13
+
14
+ For details related to contributing to the fuzzing test suite and OSS-Fuzz integration, please
15
+ refer to the dedicated [fuzzing README](./fuzzing/README.md).
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: GitPython
3
- Version: 3.1.43
3
+ Version: 3.1.45
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,7 +27,7 @@ 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"
@@ -42,14 +41,21 @@ Requires-Dist: pytest-mock; extra == "test"
42
41
  Requires-Dist: pytest-sugar; extra == "test"
43
42
  Requires-Dist: typing-extensions; python_version < "3.11" and extra == "test"
44
43
  Provides-Extra: doc
45
- Requires-Dist: sphinx==4.3.2; extra == "doc"
44
+ Requires-Dist: sphinx<7.2,>=7.1.2; extra == "doc"
46
45
  Requires-Dist: sphinx_rtd_theme; extra == "doc"
47
- Requires-Dist: sphinxcontrib-applehelp<=1.0.4,>=1.0.2; extra == "doc"
48
- Requires-Dist: sphinxcontrib-devhelp==1.0.2; extra == "doc"
49
- Requires-Dist: sphinxcontrib-htmlhelp<=2.0.1,>=2.0.0; extra == "doc"
50
- Requires-Dist: sphinxcontrib-qthelp==1.0.3; extra == "doc"
51
- Requires-Dist: sphinxcontrib-serializinghtml==1.1.5; extra == "doc"
52
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
53
59
 
54
60
  ![Python package](https://github.com/gitpython-developers/GitPython/workflows/Python%20package/badge.svg)
55
61
  [![Documentation Status](https://readthedocs.org/projects/gitpython/badge/?version=stable)](https://readthedocs.org/projects/gitpython/?badge=stable)
@@ -154,7 +160,7 @@ In the less common case that you do not want to install test dependencies, `pip
154
160
 
155
161
  #### With editable *dependencies* (not preferred, and rarely needed)
156
162
 
157
- In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediatley reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
163
+ In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediately reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
158
164
 
159
165
  If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
160
166
 
@@ -293,5 +299,8 @@ Please have a look at the [contributions file][contributing].
293
299
 
294
300
  [3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), also known as the New BSD License. See the [LICENSE file][license].
295
301
 
302
+ One file exclusively used for fuzz testing is subject to [a separate license, detailed here](./fuzzing/README.md#license).
303
+ This file is not included in the wheel or sdist packages published by the maintainers of GitPython.
304
+
296
305
  [contributing]: https://github.com/gitpython-developers/GitPython/blob/main/CONTRIBUTING.md
297
306
  [license]: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE
@@ -1,16 +1,11 @@
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
- sphinx==4.3.2
7
+ sphinx<7.2,>=7.1.2
8
8
  sphinx_rtd_theme
9
- sphinxcontrib-applehelp<=1.0.4,>=1.0.2
10
- sphinxcontrib-devhelp==1.0.2
11
- sphinxcontrib-htmlhelp<=2.0.1,>=2.0.0
12
- sphinxcontrib-qthelp==1.0.3
13
- sphinxcontrib-serializinghtml==1.1.5
14
9
  sphinx-autodoc-typehints
15
10
 
16
11
  [test]
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: GitPython
3
- Version: 3.1.43
3
+ Version: 3.1.45
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,7 +27,7 @@ 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"
@@ -42,14 +41,21 @@ Requires-Dist: pytest-mock; extra == "test"
42
41
  Requires-Dist: pytest-sugar; extra == "test"
43
42
  Requires-Dist: typing-extensions; python_version < "3.11" and extra == "test"
44
43
  Provides-Extra: doc
45
- Requires-Dist: sphinx==4.3.2; extra == "doc"
44
+ Requires-Dist: sphinx<7.2,>=7.1.2; extra == "doc"
46
45
  Requires-Dist: sphinx_rtd_theme; extra == "doc"
47
- Requires-Dist: sphinxcontrib-applehelp<=1.0.4,>=1.0.2; extra == "doc"
48
- Requires-Dist: sphinxcontrib-devhelp==1.0.2; extra == "doc"
49
- Requires-Dist: sphinxcontrib-htmlhelp<=2.0.1,>=2.0.0; extra == "doc"
50
- Requires-Dist: sphinxcontrib-qthelp==1.0.3; extra == "doc"
51
- Requires-Dist: sphinxcontrib-serializinghtml==1.1.5; extra == "doc"
52
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
53
59
 
54
60
  ![Python package](https://github.com/gitpython-developers/GitPython/workflows/Python%20package/badge.svg)
55
61
  [![Documentation Status](https://readthedocs.org/projects/gitpython/badge/?version=stable)](https://readthedocs.org/projects/gitpython/?badge=stable)
@@ -154,7 +160,7 @@ In the less common case that you do not want to install test dependencies, `pip
154
160
 
155
161
  #### With editable *dependencies* (not preferred, and rarely needed)
156
162
 
157
- In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediatley reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
163
+ In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediately reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
158
164
 
159
165
  If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
160
166
 
@@ -293,5 +299,8 @@ Please have a look at the [contributions file][contributing].
293
299
 
294
300
  [3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), also known as the New BSD License. See the [LICENSE file][license].
295
301
 
302
+ One file exclusively used for fuzz testing is subject to [a separate license, detailed here](./fuzzing/README.md#license).
303
+ This file is not included in the wheel or sdist packages published by the maintainers of GitPython.
304
+
296
305
  [contributing]: https://github.com/gitpython-developers/GitPython/blob/main/CONTRIBUTING.md
297
306
  [license]: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE
@@ -101,7 +101,7 @@ In the less common case that you do not want to install test dependencies, `pip
101
101
 
102
102
  #### With editable *dependencies* (not preferred, and rarely needed)
103
103
 
104
- In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediatley reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
104
+ In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediately reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
105
105
 
106
106
  If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
107
107
 
@@ -240,5 +240,8 @@ Please have a look at the [contributions file][contributing].
240
240
 
241
241
  [3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), also known as the New BSD License. See the [LICENSE file][license].
242
242
 
243
+ One file exclusively used for fuzz testing is subject to [a separate license, detailed here](./fuzzing/README.md#license).
244
+ This file is not included in the wheel or sdist packages published by the maintainers of GitPython.
245
+
243
246
  [contributing]: https://github.com/gitpython-developers/GitPython/blob/main/CONTRIBUTING.md
244
247
  [license]: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE
@@ -0,0 +1 @@
1
+ 3.1.45
@@ -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
 
@@ -0,0 +1,3 @@
1
+ sphinx >= 7.1.2, < 7.2
2
+ sphinx_rtd_theme
3
+ sphinx-autodoc-typehints
@@ -2,6 +2,18 @@
2
2
  Changelog
3
3
  =========
4
4
 
5
+ 3.1.45
6
+ ======
7
+
8
+ See the following for all changes.
9
+ https://github.com/gitpython-developers/GitPython/releases/tag/3.1.45
10
+
11
+ 3.1.44
12
+ ======
13
+
14
+ See the following for all changes.
15
+ https://github.com/gitpython-developers/GitPython/releases/tag/3.1.44
16
+
5
17
  3.1.43
6
18
  ======
7
19
 
@@ -20,7 +32,7 @@ https://github.com/gitpython-developers/GitPython/releases/tag/3.1.42
20
32
  3.1.41
21
33
  ======
22
34
 
23
- This release is relevant for security as it fixes a possible arbitary
35
+ This release is relevant for security as it fixes a possible arbitrary
24
36
  code execution on Windows.
25
37
 
26
38
  See this PR for details: https://github.com/gitpython-developers/GitPython/pull/1792
@@ -21,4 +21,3 @@ Indices and tables
21
21
  * :ref:`genindex`
22
22
  * :ref:`modindex`
23
23
  * :ref:`search`
24
-
@@ -122,4 +122,3 @@ License Information
122
122
  ===================
123
123
  GitPython is licensed under the New BSD License. See the LICENSE file for
124
124
  more information.
125
-
@@ -6,4 +6,3 @@ The full list of milestones including associated tasks can be found on GitHub:
6
6
  https://github.com/gitpython-developers/GitPython/issues
7
7
 
8
8
  Select the respective milestone to filter the list of issues accordingly.
9
-
@@ -86,7 +86,7 @@ __all__ = [
86
86
  "to_hex_sha",
87
87
  ]
88
88
 
89
- __version__ = '3.1.43'
89
+ __version__ = '3.1.45'
90
90
 
91
91
  from typing import Any, List, Optional, Sequence, TYPE_CHECKING, Tuple, Union
92
92