Kaydet (Commit) 18ce5df4 authored tarafından Berker Peksag's avatar Berker Peksag

Drop Python 2.6 and Python 3.3 support

üst f87ae3b5
sudo: false # run travis jobs in containers sudo: false # run travis jobs in containers
language: python language: python
python: python:
- 2.6
- 2.7 - 2.7
- 3.3
- 3.4 - 3.4
- 3.5 - 3.5
- 3.6 - 3.6
- pypy - pypy
- pypy3.5 - pypy3.5
- 3.7-dev - 3.7-dev
matrix:
allow_failures:
- python: 2.6
cache: pip cache: pip
install: install:
- pip install tox-travis - pip install tox-travis
......
...@@ -22,6 +22,9 @@ New features ...@@ -22,6 +22,9 @@ New features
.. _`Issue 86`: https://github.com/berkerpeksag/astor/issues/86 .. _`Issue 86`: https://github.com/berkerpeksag/astor/issues/86
* Dropped support for Python 2.6 and Python 3.3. Even the latest version of pip
dropped its support for both of these versions.
Bug fixes Bug fixes
~~~~~~~~~ ~~~~~~~~~
......
...@@ -33,6 +33,7 @@ classifiers = ...@@ -33,6 +33,7 @@ classifiers =
zip_safe = True zip_safe = True
include_package_data = True include_package_data = True
packages = find: packages = find:
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
[options.packages.find] [options.packages.find]
exclude = tests exclude = tests
......
[tox] [tox]
envlist = py26, py27, py33, py34, py35, py36, pypy, pypy3.5 envlist = py27, py34, py35, py36, pypy, pypy3.5
skipsdist = True skipsdist = True
[testenv] [testenv]
...@@ -7,4 +7,4 @@ usedevelop = True ...@@ -7,4 +7,4 @@ usedevelop = True
commands = nosetests -v --nocapture {posargs} commands = nosetests -v --nocapture {posargs}
deps = deps =
-rrequirements-tox.txt -rrequirements-tox.txt
py2{6,7},pypy: unittest2 py27,pypy: unittest2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment