8000 :books: update release version · pyexcel/pyexcel@40780e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 40780e6

Browse files
committed
📚 update release version
1 parent 81f06c9 commit 40780e6

File tree

6 files changed

+44
-23
lines changed

6 files changed

+44
-23
lines changed

CHANGELOG.rst

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

4-
0.6.4 - ???
4+
0.6.4 - 18.08.2020
55
--------------------------------------------------------------------------------
66

7-
**fixed**
7+
**Updated**
88

99
#. `#219 <https://github.com/pyexcel/pyexcel/issues/219>`_: book created from
1010
dict no longer discards order.

README.rst

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,6 +1028,24 @@ Available Plugins
10281028
======================== ======================= ================= ==================
10291029

10301030

1031+
Plugin shopping guide
1032+
------------------------
1033+
1034+
Except csv files, xls, xlsx and ods files are a zip of a folder containing a lot of
1035+
xml files
1036+
1037+
The dedicated readers for excel files can stream read
1038+
1039+
1040+
In order to manage the list of plugins installed, you need to use pip to add or remove
1041+
a plugin. When you use virtualenv, you can have different plugins per virtual
1042+
environment. In the situation where you have multiple plugins that does the same thing
1043+
in your environment, you need to tell pyexcel which plugin to use per function call.
1044+
For example, pyexcel-ods and pyexcel-odsr, and you want to get_array to use pyexcel-odsr.
1045+
You need to append get_array(..., library='pyexcel-odsr').
1046+
1047+
1048+
10311049
.. _pyexcel-io: https://github.com/pyexcel/pyexcel-io
10321050
.. _pyexcel-xls: https://github.com/pyexcel/pyexcel-xls
10331051
.. _pyexcel-xlsx: https://github.com/pyexcel/pyexcel-xlsx
@@ -1081,13 +1099,6 @@ Available Plugins
10811099
.. _pyexcel-gantt: https://github.com/pyexcel/pyexcel-gantt
10821100
.. _frappe-gantt: https://github.com/frappe/gantt
10831101

1084-
In order to manage the list of plugins installed, you need to use pip to add or remove
1085-
a plugin. When you use virtualenv, you can have different plugins per virtual
1086-
environment. In the situation where you have multiple plugins that does the same thing
1087-
in your environment, you need to tell pyexcel which plugin to use per function call.
1088-
For example, pyexcel-ods and pyexcel-odsr, and you want to get_array to use pyexcel-odsr.
1089-
You need to append get_array(..., library='pyexcel-odsr').
1090-
10911102
.. rubric:: Footnotes
10921103

10931104
.. [#f1] zipped csv file

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = '0.6.4'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.6.3'
31+
release = '0.6.4'
3232

3333
# -- General configuration ---------------------------------------------------
3434

docs/source/index.rst

Lines changed: 18 additions & 8 deletions
9E88
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
:Source code: http://github.com/pyexcel/pyexcel.git
66
:Issues: http://github.com/pyexcel/pyexcel/issues
77
:License: New BSD License
8-
:Development: |release|
98
:Released: |version|
109
:Generated: |today|
1110

@@ -227,6 +226,24 @@ For individual excel file formats, please install them as you wish:
227226
======================== ======================= ================= ==================
228227

229228

229+
Plugin shopping guide
230+
------------------------
231+
232+
Except csv files, xls, xlsx and ods files are a zip of a folder containing a lot of
233+
xml files
234+
235+
The dedicated readers for excel files can stream read
236+
237+
238+
In order to manage the list of plugins installed, you need to use pip to add or remove
239+
a plugin. When you use virtualenv, you can have different plugins per virtual
240+
environment. In the situation where you have multiple plugins that does the same thing
241+
in your environment, you need to tell pyexcel which plugin to use per function call.
242+
For example, pyexcel-ods and pyexcel-odsr, and you want to get_array to use pyexcel-odsr.
243+
You need to append get_array(..., library='pyexcel-odsr').
244+
245+
246+
230247
.. _pyexcel-io: https://github.com/pyexcel/pyexcel-io
231248
.. _pyexcel-xls: https://github.com/pyexcel/pyexcel-xls
232249
.. _pyexcel-xlsx: https://github.com/pyexcel/pyexcel-xlsx
@@ -280,13 +297,6 @@ For individual excel file formats, please install them as you wish:
280297
.. _pyexcel-gantt: https://github.com/pyexcel/pyexcel-gantt
281298
.. _frappe-gantt: https://github.com/frappe/gantt
282299

283-
In order to manage the list of plugins installed, you need to use pip to add or remove
284-
a plugin. When you use virtualenv, you can have different plugins per virtual
285-
environment. In the situation where you have multiple plugins that does the same thing
286-
in your environment, you need to tell pyexcel which plugin to use per function call.
287-
For example, pyexcel-ods and pyexcel-odsr, and you want to get_array to use pyexcel-odsr.
288-
You need to append get_array(..., library='pyexcel-odsr').
289-
290300
.. rubric:: Footnotes
291301

292302
.. [#f1] zipped csv file

pyexcel/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.6.4"
2-
__author__ = "C.W."
1+
__version__ = '0.6.4'
2+
__author__ = 'C.W.'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"data in different excel formats"
4141
)
4242
URL = "https://github.com/pyexcel/pyexcel"
43-
DOWNLOAD_URL = "%s/archive/0.6.3.tar.gz" % URL
43+
DOWNLOAD_URL = "%s/archive/0.6.4.tar.gz" % URL
4444
FILES = ["README.rst", "CONTRIBUTORS.rst", "CHANGELOG.rst"]
4545
KEYWORDS = [
4646
"python",
@@ -86,8 +86,8 @@
8686
}
8787
# You do not need to read beyond this line
8888
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
89-
GS_COMMAND = ("gs pyexcel v0.6.3 " +
90-
"Find 0.6.3 in changelog for more details")
89+
GS_COMMAND = ("gs pyexcel v0.6.4 " +
90+
"Find 0.6.4 in changelog for more details")
9191
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
9292
"Please install gease to enable it.")
9393
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)
0