Skip to content

Commit a008904

Browse files
committed
release v0.2.6
1 parent c0c5f3a commit a008904

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ language: python
33
notifications:
44
email: false
55
python:
6+
- pypy
67
- 3.6
78
- 3.5
89
- 3.4
910
- 3.3
1011
- 2.7
1112
- 2.6
12-
- pypy
1313
matrix:
1414
include:
1515
- python: 2.7
@@ -33,6 +33,9 @@ matrix:
3333
- python-requests
3434
- python-coverage
3535
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 -
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

CHANGELOG.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
Change log
22
================================================================================
33

4-
0.2.6 - unreleased
4+
0.2.6 - 19.06.2017
55
--------------------------------------------------------------------------------
66

77
Updated:
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

1314
0.2.5 - 28.10.2016
1415
--------------------------------------------------------------------------------

pyexcel_text.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ overrides: "pyexcel.yaml"
22
name: "pyexcel-text"
33
nick_name: text
44
version: 0.2.6
5-
release: 0.2.5
5+
release: 0.2.6
66
file_type: text
77
nodocs: true
88
dependencies:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
NAME = 'pyexcel-text'
1212
AUTHOR = 'C.W.'
1313
VERSION = '0.2.6'
14-
EMAIL = 'wangc_2011 (at) hotmail.com'
14+
EMAIL = 'wangc_2011@hotmail.com'
1515
LICENSE = 'New BSD'
1616
DESCRIPTION = (
1717
'A plugin to pyexcel and provides the capability to present and write d' +

tests/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
nose
2+
mock;python_version<"3"
23
codecov
34
coverage
45
flake8

0 commit comments

Comments
 (0)