We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc34c23a commitf9b0e75Copy full SHA for f9b0e75
.appveyor.yml
@@ -6,6 +6,9 @@ environment:
6
CYGWIN64_GIT_PATH:"C:\\cygwin64\\bin;%GIT_DAEMON_PATH%"
7
8
matrix:
9
+ -PYTHON:"C:\\Python34-x64"
10
+PYTHON_VERSION:"3.4"
11
+GIT_PATH:"%GIT_DAEMON_PATH%"
12
-PYTHON:"C:\\Python35-x64"
13
PYTHON_VERSION:"3.5"
14
GIT_PATH:"%GIT_DAEMON_PATH%"
.gitignore
@@ -18,5 +18,3 @@ nbproject
18
/.vscode/
19
.idea/
20
.cache/
21
-.mypy_cache/
22
-.pytest_cache/
.travis.yml
@@ -1,6 +1,7 @@
1
# UNUSED, only for reference. If adjustments are needed, please see github actions
2
language:python
3
python:
4
+ -"3.4"
5
-"3.5"
-"3.6"
-"3.7"
README.md
@@ -34,7 +34,7 @@ If it is not in your `PATH`, you can help GitPython find it by setting
34
the`GIT_PYTHON_GIT_EXECUTABLE=<path/to/git>` environment variable.
35
36
* Git (1.7.x or newer)
37
-* Python >= 3.5
+* Python >= 3.4
38
39
The list of dependencies are listed in`./requirements.txt` and`./test-requirements.txt`.
40
The installer takes care of installing them for you.
doc/source/intro.rst
@@ -13,7 +13,7 @@ The object database implementation is optimized for handling large quantities of
Requirements
============
15
16
-* `Python`_ >= 3.5
+* `Python`_ >= 3.4
17
* `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.
setup.py
@@ -98,7 +98,7 @@ def build_py_modules(basedir, excludes=[]):
98
include_package_data=True,
99
py_modules=build_py_modules("./git",excludes=["git.ext.*"]),
100
package_dir={'git':'git'},
101
-python_requires='>=3.5',
+python_requires='>=3.4',
102
install_requires=requirements,
103
tests_require=requirements+test_requirements,
104
zip_safe=False,
@@ -122,10 +122,10 @@ def build_py_modules(basedir, excludes=[]):
122
"Operating System :: MacOS :: MacOS X",
123
"Programming Language :: Python",
124
"Programming Language :: Python :: 3",
125
+"Programming Language :: Python :: 3.4",
126
"Programming Language :: Python :: 3.5",
127
"Programming Language :: Python :: 3.6",
128
"Programming Language :: Python :: 3.7",
-"Programming Language :: Python :: 3.8",
129
-
+"Programming Language :: Python :: 3.8"
130
]
131
)
tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py35,py36,py37,py38,flake8
+envlist =py34,py35,py36,py37,py38,flake8
[testenv]
commands = python -m unittest --buffer {posargs}