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' &&
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
=========================
'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',
[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]
{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}
{envpython} -m pytest --cov=sqlconvert -D postgres:///test
dropdb test
-[testenv:py26-postgres]
-commands = {[postgresql]commands}
-
[testenv:py27-postgres]
commands = {[postgresql]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}