]> git.phdru.name Git - cookiecutter.git/commitdiff
Stop supporting Python 2.6
authorOleg Broytman <phd@phdru.name>
Sun, 7 May 2017 17:11:55 +0000 (20:11 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 7 May 2017 17:11:55 +0000 (20:11 +0300)
project_template/devscripts/requirements/requirements.txt
project_template/docs/install.rst
project_template/setup.py
project_template/tox.ini

index 0af882c74e91951eaff46a1087ddc837e73c3cca..788a287177919a1f53d205ee47b867347cffd0f0 100644 (file)
@@ -2,7 +2,6 @@
 --find-links=http://phdru.name/Software/Python/
 --install-option=-O2
 
-argparse; python_version == '2.6'
 m_lib.defenc >= 1.0
-m_lib >= 2.0; python_version >= '2.6' and python_version < '3.0'
+m_lib >= 2.0; python_version >= '2.7' and python_version < '3.0'
 m_lib >= 3.0; python_version >= '3.3'
index a7f6197c433187715b066dc17ee164671c7b6f45..91b5c3e256a732022fdd068c913b095837a3cd9e 100644 (file)
@@ -15,8 +15,6 @@ User mode
 
     pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' --user {project}
 
-For Python 2.6 the command is easy_install.
-
 Installation from sources
 =========================
 
index 21d21b6bda2001de790025b9f1cdce9ea19f4294..f43df31f34be95223ae746c8186a10a6db820ff1 100755 (executable)
@@ -33,7 +33,6 @@ setup(name='{project}',
           'License :: OSI Approved :: GNU General Public License (GPL)',
           'Operating System :: OS Independent',
           'Programming Language :: Python :: 2',
-          'Programming Language :: Python :: 2.6',
           'Programming Language :: Python :: 2.7',
           'Programming Language :: Python :: 3',
           'Programming Language :: Python :: 3.3',
index c19b8ec0e2ed1588bb5595061eed1b5d22a84229..1b8aec7aab6a5e1d48453476de70197d48333983 100644 (file)
@@ -1,7 +1,7 @@
 [tox]
 minversion = 1.8
 toxworkdir={homedir}/.tox/{project}
-envlist = {py26,py27,py33,py34,py35,py36},{py27,py34}-flake8
+envlist = {py27,py33,py34,py35,py36},{py27,py34}-flake8
 
 # Base test environment settings
 [testenv]
@@ -26,11 +26,6 @@ whitelist_externals =
 commands =
     python -m pytest --cov={project}
 
-[testenv:py26]
-commands =
-    {[testenv]commands}
-    {[general]commands}
-
 [testenv:py27]
 commands =
     {[testenv]commands}