summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-01-16 17:37:40 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2018-06-02 08:45:53 -0700
commit06900154096902ebbd8076b4ff22a4f41327626d (patch)
tree3b11bf8cd36fc7d48069f85f7481e4a1afc23d98 /.travis.yml
parent036461879fbfdb4ddbb689163e968d7f00ded66f (diff)
downloadpep8-06900154096902ebbd8076b4ff22a4f41327626d.tar.gz
Remove support for EOL Python 2.6 and 3.3
Python 2.6 an 3.3 are end of life. They are no longer receiving bug fixes, including for security issues. Python 2.6 went EOL on 2013-10-29 and 3.3 on 2017-09-29. For additional details on support Python versions, see: https://devguide.python.org/#status-of-python-branches Removing support for EOL Pythons will reduce testing and maintenance resources. Removed all workarounds for older Pythons. Updated trove classifiers and documentation to better communicate supported Python versions. Additionally, pass python_requires argument to setuptools. Helps pip decide what version of the library to install. https://packaging.python.org/tutorials/distributing-packages/#python-requires > If your project only runs on certain Python versions, setting the > python_requires argument to the appropriate PEP 440 version specifier > string will prevent pip from installing the project on other Python > versions. https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords > python_requires > > A string corresponding to a version specifier (as defined in PEP 440) > for the Python version, used to specify the Requires-Python defined in > PEP 345. Can now use more modern Python syntax including dictionary comprehension as well as more generators. Closes #755
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 0 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 1ea5a73..511d670 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,12 +6,8 @@ install:
script: tox
matrix:
include:
- - python: 2.6
- env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- - python: 3.3
- env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5