Skip to content

Commit 1d127c9

Browse files
committed
enforce the installation of pyexcel >=0.2.2 and webio >=0.0.7, which enables automatic discovery of pyexcel plugins. By doing this, there is no negative impact. documentation has already been written to explain the code transition. No code transition is required for now. for the future, import pyexcel.ext.xxx will not be valid.
1 parent 8b2e676 commit 1d127c9

File tree

6 files changed

+45
-18
lines changed

6 files changed

+45
-18
lines changed

.moban.d/docs/source/index.rst.jj2

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,8 @@ Response methods
362362
:param file_name: same as :meth:`~flask_excel.make_response`
363363
{%endblock%}
364364

365-
Indices and tables
366-
--------------------
365+
{%block changelog%}
367366

368-
* :ref:`genindex`
369-
* :ref:`modindex`
370-
* :ref:`search`
367+
.. include:: ../../CHANGELOG.rst
371368

369+
{%endblock%}

CHANGELOG.rst

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,43 @@
11
Change log
22
================================================================================
33

4-
Unreleased
4+
0.0.5 - 21.08.2016
55
--------------------------------------------------------------------------------
66

77
Updated
88
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
99

10-
#. compatibility with pyexcel v0.2.2
10+
#. compatibility with pyexcel v0.2.2: automatic discovery of pyexcel plugins.
11+
#. `#15 <https://github.com/pyexcel/Flask-Excel/issues/15>`_: file name may have
12+
more than one dot
13+
14+
0.0.4 - 15.01.2016
15+
--------------------------------------------------------------------------------
16+
17+
Updated
18+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
19+
20+
#. `#8 <https://github.com/pyexcel/Flask-Excel/issues/8>`_: set file name in response
21+
22+
23+
0.0.3 - 01.07.2015
24+
--------------------------------------------------------------------------------
25+
26+
Updated
27+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28+
29+
#. code refactoring. less code lines in Flask-Excel and more reusable code in
30+
pyexcel-webio
31+
32+
0.0.2 - 21.05.2015
33+
--------------------------------------------------------------------------------
34+
35+
Added
36+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37+
38+
#. turn query sets into a response
39+
40+
0.0.1 - 22.01.2015
41+
--------------------------------------------------------------------------------
42+
43+
Mix pyexcel into Flask.request and bring more make_response functions.

doc/source/index.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -480,10 +480,6 @@ Response methods
480480
:param status: same as :meth:`~flask_excel.make_response`
481481
:param file_name: same as :meth:`~flask_excel.make_response`
482482

483-
Indices and tables
484-
--------------------
485483

486-
* :ref:`genindex`
487-
* :ref:`modindex`
488-
* :ref:`search`
484+
.. include:: ../../CHANGELOG.rst
489485

flask_excel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version: 0.0.5
44
release: 0.0.4
55
webframework: Flask
66
dependencies:
7-
- pyexcel>=0.2.0
8-
- pyexcel-webio>=0.0.5
7+
- pyexcel>=0.2.2
8+
- pyexcel-webio>=0.0.7
99
- Flask>=0.10.1
1010
extra_dependencies:
1111
- xls:

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pyexcel>=0.2.0
2-
pyexcel-webio>=0.0.5
1+
pyexcel>=0.2.2
2+
pyexcel-webio>=0.0.7
33
Flask>=0.10.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
]
3030

3131
INSTALL_REQUIRES = [
32-
'pyexcel>=0.2.0',
33-
'pyexcel-webio>=0.0.5',
32+
'pyexcel>=0.2.2',
33+
'pyexcel-webio>=0.0.7',
3434
'Flask>=0.10.1',
3535
]
3636

0 commit comments

Comments
 (0)