Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3778ec commit 2f8320bCopy full SHA for 2f8320b
8 files changed
.appveyor.yml
@@ -6,9 +6,6 @@ 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,3 +18,5 @@ nbproject
18
/.vscode/
19
.idea/
20
.cache/
21
+.mypy_cache/
22
+.pytest_cache/
.travis.yml
@@ -1,7 +1,6 @@
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.4
+* Python >= 3.5
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.4
+* `Python`_ >= 3.5
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.
errors.txt
@@ -0,0 +1,18 @@
+PermissionError: [WinError 32] The process cannot access the file because it is being used by another process:
+'C:\\Users\\yobmod\\AppData\\Local\\Temp\\non_bare_test_root_modulebicpd1jd\\git\\ext\\gitdb' ->
+'C:\\Users\\yobmod\\AppData\\Local\\Temp\\non_bare_test_root_modulebicpd1jd\\path\\prefix\\git\\ext\\gitdb'
+
+======================================================================
+FAIL: test_conditional_includes_from_git_dir (test.test_config.TestBase)
+----------------------------------------------------------------------
+Traceback (most recent call last):
+ File "c:\dev\gitpython\test\lib\helper.py", line 91, in wrapper
+ return func(self, path)
+ File "c:\dev\gitpython\test\test_config.py", line 267, in test_conditional_includes_from_git_dir
+ assert config._has_includes()
+AssertionError
+Ran 409 tests in 118.716s
+FAILED (failures=1, errors=10, skipped=14)
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.4',
+ python_requires='>=3.5',
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",
129
- "Programming Language :: Python :: 3.8"
+ "Programming Language :: Python :: 3.8",
130
]
131
)
tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py34,py35,py36,py37,py38,flake8
+envlist = py35,py36,py37,py38,flake8
[testenv]
commands = python -m unittest --buffer {posargs}
0 commit comments