Skip to content

Commit 7fea448

Browse files
authored
Merge pull request #113 from pyexcel/dev
0.6.6 - minor update on log
2 parents 39a3658 + 1caf894 commit 7fea448

34 files changed

+68
-48
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python package
1+
name: Unit tests on ubuntu
22

33
on: [push]
44

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: run_tests
1+
name: Run unit tests on Windows and Mac
22

33
on: [push, pull_request]
44

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
33

4+
0.6.6 - 31.1.2022
5+
--------------------------------------------------------------------------------
6+
7+
**updated**
8+
9+
#. `#112 <https://github.com/pyexcel/pyexcel-io/issues/112>`_: Log Empty Row
10+
Warning instead 'print'
11+
412
0.6.5 - 08.10.2021
513
--------------------------------------------------------------------------------
614

CONTRIBUTORS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ In alphabetical order:
99
* `John Vandenberg <https://github.com/jayvdb>`_
1010
* `Stephen J. Fuhry <https://github.com/fuhrysteve>`_
1111
* `Stephen Rauch <https://github.com/stephenrauch>`_
12-
* `vinraspa <https://github.com/vinraspa>`_
12+
* `Vincent Raspal <https://github.com/vinraspa>`_
1313
* `Víctor Antonio Hernández Monroy <https://github.com/antherkiv>`_

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2020 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2022 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-io
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: updated
6+
details:
7+
- "`#112`: Log Empty Row Warning instead 'print' "
8+
version: 0.6.6
9+
date: 31.1.2022
410
- changes:
511
- action: updated
612
details:

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
# -- Project information -----------------------------------------------------
2424

2525
project = 'pyexcel-io'
26-
copyright = '2015-2020 Onni Software Ltd.'
26+
copyright = '2015-2022 Onni Software Ltd.'
2727
author = 'C.W.'
2828
# The short X.Y version
29-
version = '0.6.5'
29+
version = '0.6.6'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.6.5'
31+
release = '0.6.6'
3232

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

docs/source/extensions.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Extend pyexcel-io Tutorial
1+
Extend pyexcel-io for other excel or tabular formats
22
================================================================================
33

44
You are welcome to extend pyexcel-io to read and write more tabular formats.
@@ -26,7 +26,7 @@ we can use get_data() to read yaml file out.
2626

2727
**Implement IReader**
2828

29-
First, let's impolement reader interface as below. Three implementations are required:
29+
First, let's implement reader interface:
3030

3131
1. `content_array` attribute, is expected to be a list of `NamedContent`
3232
2. `read_sheet` function, read sheet content by its index.
@@ -41,10 +41,10 @@ First, let's impolement reader interface as below. Three implementations are req
4141
`YourSingleSheet` makes this simple task complex in order to show case its inner
4242
workings. Two abstract functions require implementation:
4343

44-
1. `row_iterator`: should return a row: either content arry or content index as long as
45-
`column_iterator` understands
44+
1. `row_iterator`: should return a row: either content arary or content index as long as
45+
`column_iterator` can use it to return the cell value.
4646

47-
2. `column_iterator`: should return cell values one by one.
47+
2. `column_iterator`: should iterate cell value from the given row.
4848

4949
.. literalinclude:: ../../examples/custom_yaml_reader.py
5050
:language: python
@@ -63,6 +63,8 @@ files on physical disk. "memory" means a file stream. "content" means a string b
6363
:language: python
6464
:lines: 36-41
6565

66+
Usually, this registration code was placed in __init__.py file at the top level of your
67+
extension source tree. You can take a look at any pyexcel plugins for reference.
6668

6769
**Test your reader**
6870

pyexcel-io.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ overrides: "pyexcel.yaml"
22
project: "pyexcel-io"
33
name: pyexcel-io
44
nick_name: io
5-
version: 0.6.5
6-
current_version: 0.6.5
7-
release: 0.6.5
8-
copyright_year: 2015-2020
5+
version: 0.6.6
6+
current_version: 0.6.6
7+
release: 0.6.6
8+
copyright_year: 2015-2022
99
moban_command: false
1010
is_on_conda: true
1111
dependencies:

pyexcel_io/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Uniform interface for reading/writing different excel file formats
66
7-
:copyright: (c) 2014-2020 by Onni Software Ltd.
7+
:copyright: (c) 2014-2022 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
import logging

0 commit comments

Comments
 (0)