Skip to content

Commit

Permalink
Improvement: Don't fix the dependency versions (#126)
Browse files Browse the repository at this point in the history
Improvement: Don't fix the dependency versions
  • Loading branch information
manrajgrover committed Aug 8, 2019
2 parents f136dfe + f62ec2f commit d581032
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 22 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 1 addition & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -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
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d581032

Please sign in to comment.