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
tseaver committed Mar 24, 2016
1 parent 870e48e commit ffac937
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: false
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ zope.testrunner Changelog
4.5.0 (unreleased)
==================

- Dropped support for Python 3.2.
- Drop support for Python 2.6 and 3.2.


4.4.10 (2015-11-10)
===================

- Added support for Python 3.5
- Add support for Python 3.5
(`#31 <https://github.com/zopefoundation/zope.testrunner/pull/31>`_).

- Insert extra paths (from ``--path``) to the front of sys.argv
Expand All @@ -29,6 +29,7 @@ zope.testrunner Changelog

- Support skipped tests in subunit output
(`#25 <https://github.com/zopefoundation/zope.testrunner/pull/25>`_).

- More efficient test filtering
(`#26 <https://github.com/zopefoundation/zope.testrunner/pull/26>`_).

Expand All @@ -53,6 +54,7 @@ zope.testrunner Changelog
- Sort related layers close to each other to reduce the number of unnecessary
teardowns (fixes `#14
<https://github.com/zopefoundation/zope.testrunner/issues/14>`_).

- Run the unit test layer first (fixes `LP #497871
<https://bugs.launchpad.net/zope.testrunner/+bug/497871>`__).

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def run_tests(self):

setup(
name='zope.testrunner',
version='4.4.11.dev0',
version='4.5.0.dev0',
url='http://pypi.python.org/pypi/zope.testrunner',
license='ZPL 2.1',
description='Zope testrunner script.',
Expand All @@ -140,7 +140,6 @@ def run_tests(self):
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,pypy,py33,py34,py35,pypy3
py27,pypy,py33,py34,py35,pypy3

[testenv]
deps =
Expand Down

0 comments on commit ffac937

Please sign in to comment.