From 062942d5d9e00677e1f34b1ef32af84a255f4aba Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 12 Dec 2020 21:50:08 +0000 Subject: [PATCH 1/4] :books: add usage warning --- .moban.d/custom_README.rst.jj2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.moban.d/custom_README.rst.jj2 b/.moban.d/custom_README.rst.jj2 index e176dd4..860b231 100644 --- a/.moban.d/custom_README.rst.jj2 +++ b/.moban.d/custom_README.rst.jj2 @@ -10,6 +10,14 @@ New flag: `detect_merged_cells` allows you to spread the same value among all me 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. +Warning +================================================================================ + +xls file cannot contain more than 65,000 rows. You are risking the reputation +of yourself/your company/ +`your country `_ if you keep +using xls and are not aware of its row limit. + {%endblock%} {%block extras %} From 7f38de93fa8c3f1157660833899e3a852f27b058 Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 12 Dec 2020 21:50:52 +0000 Subject: [PATCH 2/4] This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst --- README.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.rst b/README.rst index 9773e5f..17bc124 100644 --- a/README.rst +++ b/README.rst @@ -41,6 +41,14 @@ New flag: `detect_merged_cells` allows you to spread the same value among all me 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. +Warning +================================================================================ + +xls file cannot contain more than 65,000 rows. You are risking the reputation +of yourself/your company/ +`your country `_ if you keep +using xls and are not aware of its row limit. + Support the project ================================================================================ From 6861b09a5e5e6c49043fef50aaacae581db1fb0d Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 12 Dec 2020 22:06:51 +0000 Subject: [PATCH 3/4] :books: update readme --- .moban.d/custom_README.rst.jj2 | 17 ++++++++++++----- README.rst | 17 ++++++++++++----- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/.moban.d/custom_README.rst.jj2 b/.moban.d/custom_README.rst.jj2 index 860b231..661d558 100644 --- a/.moban.d/custom_README.rst.jj2 +++ b/.moban.d/custom_README.rst.jj2 @@ -4,11 +4,18 @@ {% endblock %} {%block description%} -**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 `_. - -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. - -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. +**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 `_. + +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. + +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. Warning ================================================================================ diff --git a/README.rst b/README.rst index 17bc124..2505490 100644 --- a/README.rst +++ b/README.rst @@ -35,11 +35,18 @@ pyexcel-xls - Let you focus on data, instead of xls format .. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square :target: https://github.com/psf/black -**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 `_. - -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. - -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. +**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 `_. + +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. + +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. Warning ================================================================================ From 5013cca8fd6c9457a6a1a361f86e11be76d66e22 Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 12 Dec 2020 22:15:25 +0000 Subject: [PATCH 4/4] :sparkles: use pat --- .github/workflows/moban-update.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/moban-update.yml b/.github/workflows/moban-update.yml index 706fd82..7248179 100644 --- a/.github/workflows/moban-update.yml +++ b/.github/workflows/moban-update.yml @@ -8,6 +8,7 @@ jobs: - uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} + token: ${{ secrets.PAT }} - name: Set up Python uses: actions/setup-python@v1 with: