-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🎉 new style reader * 🤝 update static meta data * 💚 adapter the exception name change * 🎉 new style writer * 💚 add content-xlsx reader plugin * 📚 update change log and bump version number * This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst * 🔥 remove unwanted matrix * 🎉 register in content reader Co-authored-by: chfw <[email protected]>
- Loading branch information
Showing
19 changed files
with
113 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
With your PR, here is a check list: | ||
|
||
- [ ] Has Test cases written | ||
- [ ] Has all code lines tested | ||
- [ ] Has test cases written? | ||
- [ ] Has all code lines tested? | ||
- [ ] Has `make format` been run? | ||
- [ ] Please update CHANGELOG.yml(not CHANGELOG.rst) | ||
- [ ] Passes all Travis CI builds | ||
- [ ] Has fair amount of documentation if your change is complex | ||
- [ ] run 'make format' so as to confirm the pyexcel organisation's coding style | ||
- [ ] Please add yourself to 'contributors' section of pyexcel-xlsx.yml (if not found, please use CONTRIBUTORS.rst) | ||
- [ ] Agree on NEW BSD License for your contribution |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -540,3 +540,7 @@ cscope.files | |
cscope.out | ||
cscope.in.out | ||
cscope.po.out | ||
|
||
|
||
# remove moban hash dictionary | ||
.moban.hashes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,6 @@ python: | |
- 3.8 | ||
- 3.7 | ||
- 3.6 | ||
matrix: | ||
include: | ||
- python: 3.6 | ||
env: MINREQ=1 | ||
|
||
stages: | ||
- lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
|
||
|
||
3 contributors | ||
================================================================================ | ||
|
||
In alphabetical order: | ||
|
||
* `Benoit Pierre <https://api.github.com/users/benoit-pierre>`_ | ||
* `John Vandenberg <https://api.github.com/users/jayvdb>`_ | ||
* `Stephen J. Fuhry <https://api.github.com/users/fuhrysteve>`_ | ||
* `Benoit Pierre <https://github.com/benoit-pierre>`_ | ||
* `John Vandenberg <https://github.com/jayvdb>`_ | ||
* `Stephen J. Fuhry <https://github.com/fuhrysteve>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
pip install flake8 | ||
flake8 . --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long | ||
python setup.py checkdocs | ||
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
|
||
NAME = "pyexcel-xlsx" | ||
AUTHOR = "chfw" | ||
VERSION = "0.5.8" | ||
VERSION = "0.6.0" | ||
EMAIL = "[email protected]" | ||
LICENSE = "New BSD" | ||
DESCRIPTION = ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ collective.checkdocs | |
pygments | ||
moban | ||
moban_jinja2_github | ||
pyexcel-xls | ||
pyexcel |
Oops, something went wrong.