diff --git a/.travis.yml b/.travis.yml index 58a78f6..5a07b7d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,6 @@ matrix: env: TOXENV=py27 - python: '2.7' env: TOXENV=lint - - python: '3.4' - env: TOXENV=py34 - python: '3.5' env: TOXENV=py35 - python: '3.6' diff --git a/appveyor.yml b/appveyor.yml index 9049106..2ab9ca9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,13 +14,7 @@ environment: PYTHON_HOME: C:\Python27 PYTHON_VERSION: '2.7' PYTHON_ARCH: '32' - - - TOXENV: 'py34' - TOXPYTHON: C:\Python34\python.exe - PYTHON_HOME: C:\Python34 - PYTHON_VERSION: '3.4' - PYTHON_ARCH: '32' - + - TOXENV: 'py35' TOXPYTHON: C:\Python35\python.exe PYTHON_HOME: C:\Python35 diff --git a/requirements-dev.txt b/requirements-dev.txt index cac91bf..22a29e1 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ -coverage==4.4.1 -nose==1.3.7 -pylint==1.7.2 -tox==2.8.2 -twine==1.12.1 +coverage>=4.4.1 +nose>=1.3.7 +pylint>=1.7.2 +tox>=2.8.2 +twine>=1.12.1 diff --git a/requirements.txt b/requirements.txt index 48e0599..f979f78 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -backports.shutil_get_terminal_size==1.0.0;python_version < '3.3' -log_symbols==0.0.13 -spinners==0.0.23 -cursor==1.2.0 -termcolor==1.1.0 -colorama==0.3.9 -six==1.12.0 +backports.shutil_get_terminal_size>=1.0.0;python_version < '3.3' +log_symbols>=0.0.13 +spinners>=0.0.23 +cursor>=1.2.0 +termcolor>=1.1.0 +colorama>=0.3.9 +six>=1.12.0 diff --git a/setup.py b/setup.py index 161bd97..578382e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def dependencies(file): setup( name='halo', packages=find_packages(exclude=('tests', 'examples')), - version='0.0.26', + version='0.0.27', license='MIT', description='Beautiful terminal spinners in Python', long_description=long_description,