Skip to content

Commit 3369e93

Browse files
authored
WIP - New style io (#43)
* 🎉 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 <chfw@users.noreply.github.com>
1 parent da55a59 commit 3369e93

19 files changed

+113
-104
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
With your PR, here is a check list:
22

3-
- [ ] Has Test cases written
4-
- [ ] Has all code lines tested
3+
- [ ] Has test cases written?
4+
- [ ] Has all code lines tested?
55
- [ ] Has `make format` been run?
66
- [ ] Please update CHANGELOG.yml(not CHANGELOG.rst)
77
- [ ] Passes all Travis CI builds
88
- [ ] Has fair amount of documentation if your change is complex
9-
- [ ] run 'make format' so as to confirm the pyexcel organisation's coding style
10-
- [ ] Please add yourself to 'contributors' section of pyexcel-xlsx.yml (if not found, please use CONTRIBUTORS.rst)
119
- [ ] Agree on NEW BSD License for your contribution

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,3 +540,7 @@ cscope.files
540540
cscope.out
541541
cscope.in.out
542542
cscope.po.out
543+
544+
545+
# remove moban hash dictionary
546+
.moban.hashes

.moban.d/custom_travis.yml.jj2

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
{% extends "travis.yml.jj2" %}
22

3-
{%block extra_matrix %}
4-
matrix:
5-
include:
6-
- python: 3.6
7-
env: MINREQ=1
8-
{%endblock%}
93
{%block custom_python_versions%}
104
python:
115
- 3.8

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ python:
77
- 3.8
88
- 3.7
99
- 3.6
10-
matrix:
11-
include:
12-
- python: 3.6
13-
env: MINREQ=1
1410

1511
stages:
1612
- lint

CHANGELOG.rst

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

4+
0.6.0 - tbd
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. New style xlsx plugins, promoted by pyexcel-io v0.6.0.
10+
411
0.5.8 - 28.12.2019
512
--------------------------------------------------------------------------------
613

CONTRIBUTORS.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11

2+
23
3 contributors
34
================================================================================
45

56
In alphabetical order:
67

7-
* `Benoit Pierre <https://api.github.com/users/benoit-pierre>`_
8-
* `John Vandenberg <https://api.github.com/users/jayvdb>`_
9-
* `Stephen J. Fuhry <https://api.github.com/users/fuhrysteve>`_
8+
* `Benoit Pierre <https://github.com/benoit-pierre>`_
9+
* `John Vandenberg <https://github.com/jayvdb>`_
10+
* `Stephen J. Fuhry <https://github.com/fuhrysteve>`_

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ test: lint
66
install_test:
77
pip install -r tests/requirements.txt
88

9-
git-diff-check:
10-
git diff --exit-code
11-
129
lint:
1310
bash lint.sh
1411

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-xlsx
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- 'New style xlsx plugins, promoted by pyexcel-io v0.6.0.'
8+
date: tbd
9+
version: 0.6.0
410
- changes:
511
- action: Updated
612
details:

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
copyright = '2015-2019 Onni Software Ltd.'
2727
author = 'chfw'
2828
# The short X.Y version
29-
version = '0.5.8'
29+
version = '0.6.0'
3030
# The full version, including alpha/beta/rc tags
3131
release = '0.5.8'
3232

lint.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pip install flake8
2-
flake8 . --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long
3-
python setup.py checkdocs
2+
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs

0 commit comments

Comments
 (0)