]> git.phdru.name Git - sqlconvert.git/commitdiff
Stop supporting Python 2.6
authorOleg Broytman <phd@phdru.name>
Sun, 7 May 2017 17:25:11 +0000 (20:25 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 7 May 2017 17:25:40 +0000 (20:25 +0300)
[skip ci]

devscripts/release
devscripts/requirements/requirements.txt
docs/install.rst
setup.py
tox.ini

index 32bcca1b629053691f1af9f48e17195e8dea9282..f1079da20399673bad13ecefad0fd4278612735f 100755 (executable)
@@ -9,7 +9,7 @@ python setup.py build_py &&
 python setup.py build --executable '/usr/bin/env python' &&
 python setup.py sdist &&
 
-for py in 2.6 2.7 3.4 3.5 3.6; do
+for py in 2.7 3.4 3.5 3.6; do
    find build -name '*.py[co]' -delete &&
    python$py setup.py build_py &&
    python$py setup.py build --executable '/usr/bin/env python' &&
index e558e85cb6b8393428d10f7061b071811d8f2377..d1a7b7b52d921a1dd68a13107828959ef016e0d6 100644 (file)
@@ -1,8 +1,7 @@
 --install-option=-O2
 
-argparse; python_version == '2.6'
 sqlparse
-SQLObject>=2.2.1; python_version >= '2.6' and python_version < '3.0'
+SQLObject>=2.2.1; python_version >= '2.7' and python_version < '3.0'
 SQLObject>=3.0.0; python_version >= '3.4'
 m_lib.defenc>=1.0
 m_lib>=3.1
index 4ca147d11af91346cfeaad0a597c430d749ded5a..54050393185811ce2c0d14344d02778f8d9166b0 100644 (file)
@@ -23,8 +23,6 @@ Virtual envs
 
     pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ --install-option='-O2' sqlconvert
 
-For Python 2.6 the command is easy_install.
-
 Installation from sources
 =========================
 
index a73d59682af302af4b7f82de121b970f31ba3afe..241185a044b30172a93970dab11ecaccdba607a2 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,6 @@ setup(name='sqlconvert',
           '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.4',
diff --git a/tox.ini b/tox.ini
index 0e276dcb340e5fe6d82b14eac08fae148403f404..6feee24747adef5a717568e83515b915da9e0c3f 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 1.8
-envlist = {py26,py27,py34,py35,py36},{py26,py27,py34,py35,py36}-{postgres,sqlite},{py27,py34}-flake8
+envlist = {py27,py34,py35,py36},{py27,py34,py35,py36}-{postgres,sqlite},{py27,py34}-flake8
 
 # Base test environment settings
 [testenv]
@@ -30,9 +30,6 @@ commands =
     {envpython} {envbindir}/cmp.py -i tests/mysql2sql/test.out test.out
     {envpython} {envbindir}/rm.py test.out
 
-[testenv:py26]
-commands = {[general]commands}
-
 [testenv:py27]
 commands = {[general]commands}
 
@@ -54,9 +51,6 @@ commands =
     {envpython} -m pytest --cov=sqlconvert -D postgres:///test
     dropdb test
 
-[testenv:py26-postgres]
-commands = {[postgresql]commands}
-
 [testenv:py27-postgres]
 commands = {[postgresql]commands}
 
@@ -77,9 +71,6 @@ commands =
     {envpython} -m pytest --cov=sqlconvert -D sqlite:///tmp/test.sqdb
     {envpython} {envbindir}/rm.py /tmp/test.sqdb
 
-[testenv:py26-sqlite]
-commands = {[sqlite]commands}
-
 [testenv:py27-sqlite]
 commands = {[sqlite]commands}