File tree 5 files changed +10
-6
lines changed
5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ language: python
3
3
notifications :
4
4
email : false
5
5
python :
6
+ - pypy
6
7
- 3.6
7
8
- 3.5
8
9
- 3.4
9
10
- 3.3
10
11
- 2.7
11
12
- 2.6
12
- - pypy
13
13
matrix :
14
14
include :
15
15
- python : 2.7
@@ -33,6 +33,9 @@ matrix:
33
33
- python-requests
34
34
- python-coverage
35
35
before_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 -
36
39
- if [[ "$TABULATE_VERSION" = "dev" ]]; then
37
40
pip install git+https://bitbucket.org/astanin/python-tabulate ;
38
41
echo > README.rst ;
@@ -41,7 +44,6 @@ before_install:
41
44
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
42
45
mv min_requirements.txt requirements.txt ;
43
46
fi
44
- - pip install --upgrade setuptools "pip==7.1"
45
47
- test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
46
48
- test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
47
49
- pip install -r tests/requirements.txt
Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
4
- 0.2.6 - unreleased
4
+ 0.2.6 - 19.06.2017
5
5
--------------------------------------------------------------------------------
6
6
7
7
Updated:
8
8
********************************************************************************
9
9
10
10
#. 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
+
12
13
13
14
0.2.5 - 28.10.2016
14
15
--------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ overrides: "pyexcel.yaml"
2
2
name : " pyexcel-text"
3
3
nick_name : text
4
4
version : 0.2.6
5
- release : 0.2.5
5
+ release : 0.2.6
6
6
file_type : text
7
7
nodocs : true
8
8
dependencies :
Original file line number Diff line number Diff line change 11
11
NAME = 'pyexcel-text'
12
12
AUTHOR = 'C.W.'
13
13
VERSION = '0.2.6'
14
- EMAIL = 'wangc_2011 (at) hotmail.com'
14
+ EMAIL = 'wangc_2011@ hotmail.com'
15
15
LICENSE = 'New BSD'
16
16
DESCRIPTION = (
17
17
'A plugin to pyexcel and provides the capability to present and write d' +
Original file line number Diff line number Diff line change 1
1
nose
2
+ mock ;python_version < "3"
2
3
codecov
3
4
coverage
4
5
flake8
You can’t perform that action at this time.
0 commit comments