Skip to content

Commit 26b665c

Browse files
authored
📚 add usage warning (#44)
* 📚 add usage warning * This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst * 📚 update readme * ✨ use pat Co-authored-by: chfw <[email protected]>
1 parent 084fa8e commit 26b665c

File tree

3 files changed

+37
-6
lines changed

3 files changed

+37
-6
lines changed

.github/workflows/moban-update.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
with:
1010
ref: ${{ github.head_ref }}
11+
token: ${{ secrets.PAT }}
1112
- name: Set up Python
1213
uses: actions/setup-python@v1
1314
with:

.moban.d/custom_README.rst.jj2

+18-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,26 @@
44
{% endblock %}
55

66
{%block description%}
7-
**pyexcel-{{file_type}}** is a tiny wrapper library to read, manipulate and write data in {{file_type}} format and it can read xlsx and xlsm fromat. You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`_.
7+
**pyexcel-{{file_type}}** is a tiny wrapper library to read, manipulate and
8+
write data in {{file_type}} format and it can read xlsx and xlsm fromat.
9+
You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`_.
810

9-
New flag: `detect_merged_cells` allows you to spread the same value among all merged cells. But be aware that this may slow down its reading performance.
11+
New flag: `detect_merged_cells` allows you to spread the same value among
12+
all merged cells. But be aware that this may slow down its reading
13+
performance.
1014

11-
New flag: `skip_hidden_row_and_column` allows you to skip hidden rows and columns and is defaulted to **True**. It may slow down its reading performance. And it is only valid for 'xls' files. For 'xlsx' files, please use pyexcel-xlsx.
15+
New flag: `skip_hidden_row_and_column` allows you to skip hidden rows
16+
and columns and is defaulted to **True**. It may slow down its reading
17+
performance. And it is only valid for 'xls' files. For 'xlsx' files,
18+
please use pyexcel-xlsx.
19+
20+
Warning
21+
================================================================================
22+
23+
xls file cannot contain more than 65,000 rows. You are risking the reputation
24+
of yourself/your company/
25+
`your country <https://www.bbc.co.uk/news/technology-54423988>`_ if you keep
26+
using xls and are not aware of its row limit.
1227

1328
{%endblock%}
1429

README.rst

+18-3
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,26 @@ pyexcel-xls - Let you focus on data, instead of xls format
3535
.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
3636
:target: https://github.com/psf/black
3737

38-
**pyexcel-xls** is a tiny wrapper library to read, manipulate and write data in xls format and it can read xlsx and xlsm fromat. You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`_.
38+
**pyexcel-xls** is a tiny wrapper library to read, manipulate and
39+
write data in xls format and it can read xlsx and xlsm fromat.
40+
You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`_.
3941

40-
New flag: `detect_merged_cells` allows you to spread the same value among all merged cells. But be aware that this may slow down its reading performance.
42+
New flag: `detect_merged_cells` allows you to spread the same value among
43+
all merged cells. But be aware that this may slow down its reading
44+
performance.
4145

42-
New flag: `skip_hidden_row_and_column` allows you to skip hidden rows and columns and is defaulted to **True**. It may slow down its reading performance. And it is only valid for 'xls' files. For 'xlsx' files, please use pyexcel-xlsx.
46+
New flag: `skip_hidden_row_and_column` allows you to skip hidden rows
47+
and columns and is defaulted to **True**. It may slow down its reading
48+
performance. And it is only valid for 'xls' files. For 'xlsx' files,
49+
please use pyexcel-xlsx.
50+
51+
Warning
52+
================================================================================
53+
54+
xls file cannot contain more than 65,000 rows. You are risking the reputation
55+
of yourself/your company/
56+
`your country <https://www.bbc.co.uk/news/technology-54423988>`_ if you keep
57+
using xls and are not aware of its row limit.
4358

4459

4560
Support the project

0 commit comments

Comments
 (0)