Skip to content

Commit ae77616

Browse files
committed
start version 0.0.6
1 parent fcac6b7 commit ae77616

File tree

9 files changed

+13
-16
lines changed

9 files changed

+13
-16
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ python:
1010
- 3.5
1111
before_install:
1212
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install weakrefset; fi
13+
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
1314
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
1415
mv min_requirements.txt requirements.txt ;
1516
fi

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
================================================================================
2-
Flask-Excel - Let you focus on data, instead of file formats
3-
================================================================================
2+
Flask-Excel - Let you focus on data, instead of file formats================================================================================
43

54
.. image:: https://api.travis-ci.org/pyexcel/Flask-Excel.svg?branch=master
65
:target: http://travis-ci.org/pyexcel/Flask-Excel

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
intersphinx_mapping = {
1010
'pyexcel': ('http://pyexcel.readthedocs.org/en/latest/', None)
1111
}
12-
12+
spelling_word_list_filename = 'spelling_wordlist.txt'
1313
templates_path = ['_templates']
1414
source_suffix = '.rst'
1515
master_doc = 'index'
1616

1717
project = u'Flask-Excel'
1818
copyright = u'2015-2016 Onni Software Ltd.'
19-
version = '0.0.5'
19+
version = '0.0.6'
2020
release = '0.0.5'
2121
exclude_patterns = []
2222
pygments_style = 'sphinx'

doc/source/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ Welcome to Flask-Excel's documentation!
99
:Author: C.W.
1010
:Issues: http://github.com/pyexcel/Flask-Excel/issues
1111
:License: New BSD License
12-
:Version: |version|
12+
:Development: |version|
13+
:Released: |release|
1314
:Generated: |today|
1415

1516
**Flask-Excel** is based on `pyexcel <https://github.com/pyexcel/pyexcel>`_ and makes

flask_excel.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
overrides: "pyexcel.yaml"
22
name: "Flask-Excel"
3-
version: 0.0.5
3+
version: 0.0.6
4+
release: 0.0.5
45
webframework: Flask
56
dependencies:
67
- pyexcel>=0.2.0

rnd_requirements.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +0,0 @@
1-
https://github.com/chfw/ezodf/archive/master.zip
2-
https://github.com/pyexcel/pyexcel-io/archive/master.zip
3-
https://github.com/pyexcel/pyexcel/archive/master.zip
4-
https://github.com/pyexcel/pyexcel-webio/archive/master.zip
5-
https://github.com/pyexcel/pyexcel-xls/archive/master.zip
6-
https://github.com/pyexcel/pyexcel-xlsx/archive/master.zip
7-
https://github.com/pyexcel/pyexcel-ods3/archive/master.zip

setup.py

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

88
NAME = 'Flask-Excel'
99
AUTHOR = 'C.W.'
10-
VERSION = '0.0.5'
10+
VERSION = '0.0.6'
1111
EMAIL = 'wangc_2011 (at) hotmail.com'
1212
LICENSE = 'New BSD'
1313
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])

test.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
12
pip freeze
2-
nosetests --with-cov --cover-package pyexcel_pyexcel --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst flask_excel && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
3+
nosetests --with-cov --cover-package pyexcel_pyexcel --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst flask_excel && flake8 . --exclude=.moban.d

test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
12
pip freeze
2-
nosetests --with-cov --cover-package pyexcel_pyexcel --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst flask_excel && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
3+
nosetests --with-cov --cover-package pyexcel_pyexcel --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst flask_excel && flake8 . --exclude=.moban.d

0 commit comments

Comments
 (0)