summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2021-08-03 17:06:31 +0100
committerGitHub <noreply@github.com>2021-08-03 17:06:31 +0100
commit05c77cf06e82f7932fb9775fad74251ad6c8aa4f (patch)
tree2491f8abc76300493fc80251fa21a967db48c375 /doc
parent335e59dc2cece491a5c5d42396ce70d4ed0715b5 (diff)
parent0b89bfe855f0faadf359efcfad8ae752d98c6032 (diff)
downloadgitpython-05c77cf06e82f7932fb9775fad74251ad6c8aa4f.tar.gz
Merge branch 'main' into patch-1
Diffstat (limited to 'doc')
-rw-r--r--doc/source/intro.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/source/intro.rst b/doc/source/intro.rst
index 956a3607..4f22a094 100644
--- a/doc/source/intro.rst
+++ b/doc/source/intro.rst
@@ -13,15 +13,17 @@ The object database implementation is optimized for handling large quantities of
Requirements
============
-* `Python`_ >= 3.6
+* `Python`_ >= 3.7
* `Git`_ 1.7.0 or newer
It should also work with older versions, but it may be that some operations
involving remotes will not work as expected.
* `GitDB`_ - a pure python git database implementation
+* `typing_extensions`_ >= 3.7.3.4 (if python < 3.10)
.. _Python: https://www.python.org
.. _Git: https://git-scm.com/
.. _GitDB: https://pypi.python.org/pypi/gitdb
+.. _typing_extensions: https://pypi.org/project/typing-extensions/
Installing GitPython
====================
@@ -60,7 +62,7 @@ Leakage of System Resources
---------------------------
GitPython is not suited for long-running processes (like daemons) as it tends to
-leak system resources. It was written in a time where destructors (as implemented
+leak system resources. It was written in a time where destructors (as implemented
in the `__del__` method) still ran deterministically.
In case you still want to use it in such a context, you will want to search the