Skip to content

Commit fd29e7e

Browse files
committed
update dependencies
1 parent 59bdcff commit fd29e7e

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ matrix:
2626
- python-nose
2727
- python-mock
2828
before_install:
29+
- cd $HOME
30+
- "if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then deactivate && wget https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.7.1-linux_x86_64-portable.tar.bz2 -O - | tar -jxf - && echo 'Setting up aliases...' && ln -s pypy-5.7.1-linux_x86_64-portable pypy2-latest && export PATH=$HOME/pypy2-latest/bin/:$PATH && virtualenv --no-site-packages --python ~/pypy2-latest/bin/pypy pypy2-env && echo 'Creating custom env...' && source pypy2-env/bin/activate && python -V; fi"
31+
- cd -
2932
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install ordereddict; fi
3033
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
3134
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
project = u'pyexcel-xls'
2323
copyright = u'2015-2017 Onni Software Ltd.'
24-
version = '0.3.3'
24+
version = '0.4.0'
2525
release = '0.4.0'
2626
exclude_patterns = []
2727
pygments_style = 'sphinx'

pyexcel_xls.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ overrides: "pyexcel.yaml"
22
name: "pyexcel-xls"
33
nick_name: xls
44
version: 0.4.0
5-
release: 0.3.3
5+
release: 0.4.0
66
file_type: xls
77
dependencies:
8-
- pyexcel-io>=0.3.0
8+
- pyexcel-io>=0.4.0
99
- xlrd
1010
- xlwt
1111
description: A wrapper library to read, manipulate and write data in xls format. It reads xlsx and xlsm format

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pyexcel-io>=0.3.0
1+
pyexcel-io>=0.4.0
22
xlrd
33
xlwt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
]
4545

4646
INSTALL_REQUIRES = [
47-
'pyexcel-io>=0.3.0',
47+
'pyexcel-io>=0.4.0',
4848
'xlrd',
4949
'xlwt',
5050
]

0 commit comments

Comments
 (0)