File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ language: python
33notifications :
44 email : false
55python :
6+ - pypy
67 - 3.6
78 - 3.5
89 - 3.4
910 - 3.3
1011 - 2.7
1112 - 2.6
12- - pypy
1313matrix :
1414 include :
1515 - python : 2.7
@@ -33,6 +33,9 @@ matrix:
3333 - python-requests
3434 - python-coverage
3535before_install :
36+ - cd $HOME
37+ - " 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"
38+ - cd -
3639 - if [[ "$TABULATE_VERSION" = "dev" ]]; then
3740 pip install git+https://bitbucket.org/astanin/python-tabulate ;
3841 echo > README.rst ;
@@ -41,7 +44,6 @@ before_install:
4144 - if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
4245 mv min_requirements.txt requirements.txt ;
4346 fi
44- - pip install --upgrade setuptools "pip==7.1"
4547 - test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
4648 - test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
4749 - pip install -r tests/requirements.txt
Original file line number Diff line number Diff line change 11Change log
22================================================================================
33
4- 0.2.6 - unreleased
4+ 0.2.6 - 19.06.2017
55--------------------------------------------------------------------------------
66
77Updated:
88********************************************************************************
99
1010#. Support pyexcel v0.5.0. Plugin interface updated to Renderer
11- #. remove deprecated save_as and save_to_memory functions
11+ #. removed deprecated save_as and save_to_memory functions
12+
1213
13140.2.5 - 28.10.2016
1415--------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ overrides: "pyexcel.yaml"
22name : " pyexcel-text"
33nick_name : text
44version : 0.2.6
5- release : 0.2.5
5+ release : 0.2.6
66file_type : text
77nodocs : true
88dependencies :
Original file line number Diff line number Diff line change 1111NAME = 'pyexcel-text'
1212AUTHOR = 'C.W.'
1313VERSION = '0.2.6'
14- EMAIL = 'wangc_2011 (at) hotmail.com'
14+ EMAIL = 'wangc_2011@ hotmail.com'
1515LICENSE = 'New BSD'
1616DESCRIPTION = (
1717 'A plugin to pyexcel and provides the capability to present and write d' +
Original file line number Diff line number Diff line change 11nose
2+ mock ;python_version < "3"
23codecov
34coverage
45flake8
You can’t perform that action at this time.
0 commit comments