diff options
author | Yobmod <yobmod@gmail.com> | 2021-08-02 15:48:17 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-08-02 15:48:17 +0100 |
commit | 270c3d7d4bbe4c606049bfd8af53da1bc3df4ad4 (patch) | |
tree | 8aa1ebcba31ed377eb3dc82404bd8a93fd168380 /doc | |
parent | bef218246c9935f0c31b23a17d1a02ac3810301d (diff) | |
download | gitpython-270c3d7d4bbe4c606049bfd8af53da1bc3df4ad4.tar.gz |
rmv 3.6 README
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/intro.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 956a3607..d7a18412 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.10.0 .. _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 |