Skip to content

Commit

Permalink
Drop support for Python 3.2
Browse files Browse the repository at this point in the history
It's not supported by pip anymore (see pypa/pip#3390)
and not by the PSF either (see https://www.python.org/dev/peps/pep-0392/).
  • Loading branch information
mineo committed Apr 6, 2018
1 parent 7dfd0ed commit d9e4e62
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
18 changes: 7 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,19 @@ language: python
cache: pip
matrix:
include:
- python: 2.6
- python: "2.6"
env: TOXENV=py26
- python: 2.7
- python: "2.7"
env: TOXENV=py27
- python: 3.2
env: TOXENV=py32
- python: 3.3
- python: "3.3"
env: TOXENV=py33
- python: 3.4
- python: "3.4"
env: TOXENV=py34
- python: 3.5
- python: "3.5"
env: TOXENV=py35
- python: 3.6
env: TOXENV=flake8
- python: 3.6
- python: "3.6"
env: TOXENV=py36
- python: pypy
- python: "pypy"
env: TOXENV=pypy
install:
- travis_retry pip install tox
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
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=py{26,27,32,33,34,35,36,py},flake8
envlist=py{26,27,33,34,35,36,py},flake8

[testenv]
commands=
Expand Down

0 comments on commit d9e4e62

Please sign in to comment.