Skip to content

Commit

Permalink
Merge pull request #52 from Pylons/drop-py32
Browse files Browse the repository at this point in the history
Drop support for Python 3.2.
  • Loading branch information
tseaver committed Feb 23, 2016
2 parents a6ad6cf + 7e18c43 commit ad201a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -5,7 +5,6 @@ sudo: false
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
Expand Down
10 changes: 8 additions & 2 deletions CHANGES.rst
@@ -1,5 +1,11 @@
Next release
------------
1.1 (unreleased)
----------------

- Deprecate support for Python 2.6: it will be removed in the 1.2
release.

- Drop support for Python 3.2: it is no longer supported by current
packaging / CI tools.

- Support loaders that require the module name as argument to their
``get_filename()`` method. This fixes problems with zipped packages
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -36,7 +36,7 @@
docs_extras = ['Sphinx', 'repoze.sphinx.autointerface']

setup(name='venusian',
version='1.0',
version='1.1-dev0',
description='A library for deferring decorator actions',
long_description=README + '\n\n' + CHANGES,
classifiers=[
Expand All @@ -46,7 +46,6 @@
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,py34,pypy,pypy3,docs,{py2,py3}-cover,coverage
py26,py27,py33,py34,pypy,pypy3,docs,{py2,py3}-cover,coverage

[testenv]
commands =
Expand Down

0 comments on commit ad201a3

Please sign in to comment.