Skip to content

Commit 543d900

Browse files
committed
chore(compat): state py2.6 support officially
More information in the respective issue. Fixes #453
1 parent 6581aca commit 543d900

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ It provides abstractions of git objects for easy access of repository data, and
66

77
The object database implementation is optimized for handling large quantities of objects and large datasets, which is achieved by using low-level structures and data streaming.
88

9+
910
### REQUIREMENTS
1011

1112
GitPython needs the `git` executable to be installed on the system and available in your `PATH` for most operations. If it is not in your `PATH`, you can help GitPython find it by setting the `GIT_PYTHON_GIT_EXECUTABLE=<path/to/git>` environment variable.
1213

1314
* Git (1.7.x or newer)
15+
* Python 2.7 to 3.5, while python 2.6 is supported on a *best-effort basis*.
1416

1517
The list of dependencies are listed in `./requirements.txt` and `./test-requirements.txt`. The installer takes care of installing them for you.
1618

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ def _stamp_version(filename):
110110
"Operating System :: MacOS :: MacOS X",
111111
"Programming Language :: Python",
112112
"Programming Language :: Python :: 2",
113+
"Programming Language :: Python :: 2.6",
113114
"Programming Language :: Python :: 2.7",
114115
"Programming Language :: Python :: 3",
115116
"Programming Language :: Python :: 3.3",

0 commit comments

Comments
 (0)