diff options
author | Yobmod <yobmod@gmail.com> | 2021-06-23 02:22:34 +0100 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-06-23 19:48:40 +0800 |
commit | 93954d20310a7b77322211fd7c1eb8bd34217612 (patch) | |
tree | e9030835ef3a199a650e9d948c03eea99a09696d | |
parent | 8340e0bb6ad0d7c1cdb26cbe62828d3595c3b7a6 (diff) | |
download | gitpython-93954d20310a7b77322211fd7c1eb8bd34217612.tar.gz |
Update typing-extensions version in requirements.txt
-rw-r--r-- | doc/source/tutorial.rst | 2 | ||||
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | test-requirements.txt | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst index d548f882..303e89cf 100644 --- a/doc/source/tutorial.rst +++ b/doc/source/tutorial.rst @@ -10,7 +10,7 @@ GitPython Tutorial GitPython provides object model access to your git repository. This tutorial is composed of multiple sections, most of which explains a real-life usecase. -All code presented here originated from `test_docs.py <https://github.com/gitpython-developers/GitPython/blob/master/test/test_docs.py>`_ to assure correctness. Knowing this should also allow you to more easily run the code for your own testing purposes, all you need is a developer installation of git-python. +All code presented here originated from `test_docs.py <https://github.com/gitpython-developers/GitPython/blob/main/test/test_docs.py>`_ to assure correctness. Knowing this should also allow you to more easily run the code for your own testing purposes, all you need is a developer installation of git-python. Meet the Repo type ****************** diff --git a/requirements.txt b/requirements.txt index d980f668..7159416a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ gitdb>=4.0.1,<5 -typing-extensions>=3.7.4.0;python_version<"3.8" +typing-extensions>=3.7.4.3;python_version<"3.8" diff --git a/test-requirements.txt b/test-requirements.txt index e06d2be1..16dc0d2c 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -5,4 +5,4 @@ tox virtualenv nose gitdb>=4.0.1,<5 -typing-extensions>=3.7.4.0;python_version<"3.8" +typing-extensions>=3.7.4.3;python_version<"3.8" @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37,py38,py39,flake8 +envlist = py36,py37,py38,py39,flake8 [testenv] commands = python -m unittest --buffer {posargs} |