Skip to content

Commit

Permalink
Drop support for python 2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Apr 3, 2016
1 parent 3004c89 commit e680479
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 1,002 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ env:
global: TEST_RUNNER=unittest PYTHONHASHSEED=random
matrix:
include:
- python: "2.6"
env: TEST_RUNNER=unittest2.__main__ TEST_REQUIRE="gevent geventhttpclient fastimport unittest2"
- python: "2.7"
env: TEST_REQUIRE="gevent geventhttpclient fastimport"
- python: "pypy"
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ PYFLAKES = pyflakes
PEP8 = pep8
SETUP = $(PYTHON) setup.py
PYDOCTOR ?= pydoctor
ifeq ($(shell $(PYTHON) -c "import sys; print(sys.version_info >= (2, 7))"),True)
TESTRUNNER ?= unittest
else
TESTRUNNER ?= unittest2.__main__
endif
RUNTEST = PYTHONHASHSEED=random PYTHONPATH=.:$(PYTHONPATH) $(PYTHON) -m $(TESTRUNNER) $(TEST_OPTIONS)

DESTDIR=/
Expand Down
6 changes: 5 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.12.1 UNRELEASED
0.13.0 UNRELEASED

IMPROVEMENTS

Expand All @@ -11,6 +11,10 @@
* Fix `dulwich.porcelain.status` when used in empty trees.
(Jelmer Vernooij, #415)

CHANGES

* Drop support for Python 2.6.

0.12.0 2015-12-13

IMPROVEMENTS
Expand Down
2 changes: 1 addition & 1 deletion dulwich/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

"""Python implementation of the Git file formats and protocols."""

__version__ = (0, 12, 1)
__version__ = (0, 13, 0)
Loading

0 comments on commit e680479

Please sign in to comment.