Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Drop Python 2.6, add 3.4, 3.5, 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Apr 24, 2017
1 parent dff72bb commit 6ca85c5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
21 changes: 14 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
language: python
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=pypy
sudo: false
addons:
apt:
packages:
- enscript
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
install:
- sudo apt-get install enscript
- pip install tox
- pip install tox-travis
script:
- tox
notifications:
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
Changes
=======

2.0.4 (unreleased)
2.1.0 (unreleased)
------------------

- Nothing changed yet.
- Dropped Python 2.6 support.

- Added Python 3.4, 3.5 and 3.6 support.


2.0.3 (2015-11-09)
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ def read(*rnames):
'License :: OSI Approved :: Zope Public License',
'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',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,pypy
envlist = py27,py33,py34,py35,py36,pypy,pypy3

[testenv]
deps = zope.testrunner
Expand Down

0 comments on commit 6ca85c5

Please sign in to comment.