From: Oleg Broytman Date: Mon, 11 Dec 2017 14:16:07 +0000 (+0300) Subject: Build(setup.py): Use python_version marker and python_requires keyword X-Git-Tag: 0.2.3~34 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=4c7b0c4296078cdc79357356f0c89d59a2ad5f37 Build(setup.py): Use python_version marker and python_requires keyword CI: Upgrade pip and setuptools --- diff --git a/.travis.yml b/.travis.yml index 550b6d0..e598ae2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,7 +55,7 @@ matrix: env: TOXENV=py34-flake8 install: - - travis_retry pip install tox ppu + - travis_retry pip install --upgrade pip setuptools tox ppu script: - tox diff --git a/appveyor.yml b/appveyor.yml index 2dec36f..95e50c0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -144,7 +144,7 @@ install: - "python --version" - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" - "pip --version" - - "pip install tox ppu" + - "pip install --upgrade pip setuptools tox ppu" # No build step - we don't have C extensions build: false diff --git a/setup.py b/setup.py index d434424..2313958 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ #!/usr/bin/env python -import sys from imp import load_source from os.path import abspath, dirname, join @@ -18,21 +17,15 @@ from sqlconvert_version import __version__ # noqa kw = {} if is_setuptools: - if (sys.version_info[:2] == (2, 7)): - PY2 = True - elif (sys.version_info[0] == 3) and (sys.version_info[:2] >= (3, 4)): - PY2 = False - else: - raise ImportError("sqlconvert requires Python 2.7 or 3.4+") - kw['install_requires'] = [ 'sqlparse', - 'm_lib.defenc>=1.0', 'm_lib>=3.1', + 'm_lib>=3.1', + 'm_lib.defenc>=1.0', + 'SQLObject>=2.2.1; python_version=="2.7"', + 'SQLObject>=3.0.0; python_version>="3.4"', ] - if PY2: - kw['install_requires'].append('SQLObject>=2.2.1') - else: - kw['install_requires'].append('SQLObject>=3.0.0') + + kw['python_requires'] = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' setup(name='sqlconvert', version=__version__,